We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mypy
1 parent af8381d commit 1600915Copy full SHA for 1600915
.github/workflows/ci.yml
@@ -32,7 +32,7 @@ jobs:
32
33
- uses: actions/setup-python@v5
34
with:
35
- python-version: "3.10"
+ python-version: "3.13"
36
cache: poetry
37
38
- name: install
@@ -44,7 +44,10 @@ jobs:
44
- name: typetest
45
run: poe typetest
46
47
- - name: typecheck (partial)
+ - name: basedmypy
48
+ run: poe mypy
49
+
50
+ - name: basedpyright (partial)
51
run: |
52
targets=(
53
"_lib"
@@ -62,7 +65,6 @@ jobs:
62
65
"special"
63
66
)
64
67
for target in "${targets[@]}"; do
- poe mypy $target
68
poe pyright $target
69
done
70
0 commit comments