Skip to content

Commit

Permalink
Run mypy for all supported pythons explicitly (#527)
Browse files Browse the repository at this point in the history
* Run mypy for all supported pythons explicitly

* fix
  • Loading branch information
asvetlov authored Dec 17, 2024
1 parent 41dc90c commit 00e465a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- run: make setup
- run: make lint
- run: pre-commit run --all-files

test:
name: Test
Expand Down Expand Up @@ -76,6 +76,9 @@ jobs:
uses: py-actions/py-dependency-install@v4
with:
path: requirements/ci.txt
- name: Run mypy
run: |
mypy
- name: Run tests
env:
PYTHONPATH: .
Expand Down
1 change: 1 addition & 0 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
mypy==1.13.0
pytest==8.3.4
pytest-aiohttp==1.0.5
pytest-cov==6.0.0
1 change: 0 additions & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
-r ci.txt
-r doc.txt
mypy==1.13.0
pre-commit==4.0.1
pytest-sugar==1.0.0

0 comments on commit 00e465a

Please sign in to comment.