Skip to content

Commit 99ebc53

Browse files
committed
ci: fix venv creation
1 parent 1992bac commit 99ebc53

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
- name: Checkout repository
1313
uses: actions/checkout@v3
1414
- name: Create virtual environment
15-
run: make venv
15+
run: |
16+
python -m venv venv
17+
venv/bin/pip3 install -r requirements.txt
1618
- name: Syntax check
1719
run: |
1820
. venv/bin/activate
@@ -26,7 +28,9 @@ jobs:
2628
- name: Checkout repository
2729
uses: actions/checkout@v3
2830
- name: Create virtual environment
29-
run: make venv
31+
run: |
32+
python -m venv venv
33+
venv/bin/pip3 install -r requirements.txt
3034
- name: Build documentation
3135
run: |
3236
. venv/bin/activate

0 commit comments

Comments
 (0)