Skip to content

Commit

Permalink
install type stubs first
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-shaw committed Oct 17, 2024
1 parent 8c56d4d commit c6cdb85
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:
- name: Check code for potential security vulnerabilities
run: bandit -r . -x /tests
- name: Static type checking
run: mypy .
run: |
mypy --install-types
mypy .
- name: Check code formatting
run: |
black . -t py312 -l 120 --check
Expand Down

0 comments on commit c6cdb85

Please sign in to comment.