Skip to content

Commit 3dc243d

Browse files
committed
chore(ci): fix for debian python3
1 parent dbe5414 commit 3dc243d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,13 @@ jobs:
104104
githubToken: ${{ github.token }}
105105
install: |
106106
apt-get update
107-
apt-get install -y --no-install-recommends python3 python3-pip
107+
apt-get install -y --no-install-recommends python3 python3-full
108+
python3 -m venv venv
109+
. venv/bin/activate
108110
pip3 install -U pip
109111
run: |
110112
set -e
113+
. venv/bin/activate
111114
pip3 install --pre "general_sam[test]" --find-links dist --force-reinstall
112115
pytest --import-mode=importlib
113116
windows:

0 commit comments

Comments
 (0)