Skip to content

Commit

Permalink
Revert "Only install dev requirements"
Browse files Browse the repository at this point in the history
This reverts commit 3694c38.
  • Loading branch information
mbging committed Apr 11, 2024
1 parent 3694c38 commit fa0f7d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ jobs:
# Installing all dependencies and not just the linters as mypy needs them for type checking
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements.dev.txt
- name: Lint with ruff
run: |
ruff check .
- name: Lint with mypy
run: |
mypy app/
mypy app

0 comments on commit fa0f7d3

Please sign in to comment.