Skip to content

Commit

Permalink
Install dependencies from requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
tsundvoll committed Jun 19, 2024
1 parent 33dfc6a commit 0444090
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Lint
run: |
black --check .
mypy .
pip install -r requirements.txt -e .[dev]
- name: Test with pytest
run: |
pytest
env:
ENVIRONMENT: local

- name: Lint
run: |
black --check .
mypy .

0 comments on commit 0444090

Please sign in to comment.