Skip to content

Commit

Permalink
ci: fix venv creation
Browse files Browse the repository at this point in the history
  • Loading branch information
daringer committed Nov 26, 2024
1 parent 1992bac commit 99ebc53
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Create virtual environment
run: make venv
run: |
python -m venv venv
venv/bin/pip3 install -r requirements.txt
- name: Syntax check
run: |
. venv/bin/activate
Expand All @@ -26,7 +28,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Create virtual environment
run: make venv
run: |
python -m venv venv
venv/bin/pip3 install -r requirements.txt
- name: Build documentation
run: |
. venv/bin/activate
Expand Down

0 comments on commit 99ebc53

Please sign in to comment.