Skip to content

Commit

Permalink
Use different command to activate virtual environment
Browse files Browse the repository at this point in the history
For:
#3
  • Loading branch information
liammulh committed Feb 15, 2024
1 parent 3c5481b commit 0c7ad02
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ jobs:
run: pip install pipenv
- name: Install dependencies
run: pipenv sync
- name: Activate virtual environment
run: pipenv shell
- name: Format
run: invoke fmt
run: pipenv run invoke fmt
- name: Lint
run: invoke lint
run: pipenv run invoke lint
- name: Check types
run: invoke types
run: pipenv run invoke types
- name: Run tests
run: invoke test
run: pipenv run invoke test

0 comments on commit 0c7ad02

Please sign in to comment.