Skip to content

Commit

Permalink
Install black and mypy on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCBrammer committed Aug 23, 2024
1 parent 8520978 commit 1e55c8c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
- name: pytest
run: pytest
- name: black
run: black . --check --diff
run: |
pip install black
black . --check --diff
- name: mypy
run: mypy tucan
run: |
pip install mypy
mypy tucan

0 comments on commit 1e55c8c

Please sign in to comment.