Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit 20d7e3c

Browse files
author
Phil Varner
committed
run mypy in github ci correctly
1 parent fe6d35e commit 20d7e3c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pr.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
run: |
2525
python -m pip install pre-commit
2626
pre-commit run --all-files
27-
mypy src
27+
- name: Type-check code
28+
if: ${{ matrix.python-version == 3.12 }}
29+
run: poetry run mypy src
2830
- name: Run tests
2931
run: poetry run nox

0 commit comments

Comments
 (0)