Skip to content

Commit 1600915

Browse files
committed
mypy everything in the CI
1 parent af8381d commit 1600915

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
- uses: actions/setup-python@v5
3434
with:
35-
python-version: "3.10"
35+
python-version: "3.13"
3636
cache: poetry
3737

3838
- name: install
@@ -44,7 +44,10 @@ jobs:
4444
- name: typetest
4545
run: poe typetest
4646

47-
- name: typecheck (partial)
47+
- name: basedmypy
48+
run: poe mypy
49+
50+
- name: basedpyright (partial)
4851
run: |
4952
targets=(
5053
"_lib"
@@ -62,7 +65,6 @@ jobs:
6265
"special"
6366
)
6467
for target in "${targets[@]}"; do
65-
poe mypy $target
6668
poe pyright $target
6769
done
6870

0 commit comments

Comments
 (0)