We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6820ca2 commit 8e0cd26Copy full SHA for 8e0cd26
.github/workflows/linux.yml
@@ -20,10 +20,10 @@ jobs:
20
21
steps:
22
- uses: actions/checkout@v3
23
- - name: Set up Python 3.10
+ - name: Set up Python 3.12
24
uses: actions/setup-python@v3
25
with:
26
- python-version: "3.10"
+ python-version: "3.12"
27
28
- name: Install poetry package and environment manager
29
run: |
@@ -37,6 +37,10 @@ jobs:
37
38
poetry run mypy .
39
40
+ - name: Static type check with pyright
41
+ run: |
42
+ poetry run pyright .
43
+
44
- name: Lint with black
45
46
poetry run black --check .
@@ -45,10 +49,6 @@ jobs:
49
50
poetry run flake8 . --count --show-source --statistics
47
51
48
- - name: Lint with prospector
- run: |
- poetry run prospector .
-
52
- name: Test with pytest
53
54
poetry run pytest
0 commit comments