Skip to content

Commit

Permalink
make mypy target all files
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Jun 11, 2024
1 parent 1231513 commit 6140598
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
pip install mypy
# Start by installing type stubs
- name: mypy --> Install stubs
run: echo -e "y" | mypy --install-types **/*.py || exit 0
run: echo -e "y" | mypy --install-types . || exit 0
- name: mypy --> Static type checking
# Configured in pyprojet.toml
run: mypy **/*.py
run: mypy .

# Use Prettier to check various file formats
prettier:
Expand Down

0 comments on commit 6140598

Please sign in to comment.