Skip to content

Commit

Permalink
source venv.
Browse files Browse the repository at this point in the history
  • Loading branch information
janiversen committed Jul 14, 2023
1 parent 9ba461a commit b80e61e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,16 @@ jobs:
- name: Install requirements
if: steps.cacheVenv.outputs.cache-hit != 'true'
run: pip install -e . -r requirements.txt
run: |
python -m venv ./.venv
source ./.venv/bin/activate
pip install -U -e . -r requirements.txt
- name: Activate venv
if: steps.cacheVenv.outputs.cache-hit == 'true'
run: |
source ./.venv/bin/activate
pip install -U -e .
- name: codespell
run: codespell
Expand Down

0 comments on commit b80e61e

Please sign in to comment.