Skip to content

Commit

Permalink
Add mypy check to linting
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindeide committed Sep 8, 2023
1 parent be2f4a1 commit c7836f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
with:
python-version: "3.11"
- name: Install test requirements
run: pip install black
run: pip install -r dev-requirements.txt
- name: Check black
run: black --check .
- name: Check typing
run: mypy src
1 change: 1 addition & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pytest
black
mypy

0 comments on commit c7836f3

Please sign in to comment.