Skip to content

Commit 8e0cd26

Browse files
committed
conf: remove prospector, add pyright
1 parent 6820ca2 commit 8e0cd26

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/linux.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v3
23-
- name: Set up Python 3.10
23+
- name: Set up Python 3.12
2424
uses: actions/setup-python@v3
2525
with:
26-
python-version: "3.10"
26+
python-version: "3.12"
2727

2828
- name: Install poetry package and environment manager
2929
run: |
@@ -37,6 +37,10 @@ jobs:
3737
run: |
3838
poetry run mypy .
3939
40+
- name: Static type check with pyright
41+
run: |
42+
poetry run pyright .
43+
4044
- name: Lint with black
4145
run: |
4246
poetry run black --check .
@@ -45,10 +49,6 @@ jobs:
4549
run: |
4650
poetry run flake8 . --count --show-source --statistics
4751
48-
- name: Lint with prospector
49-
run: |
50-
poetry run prospector .
51-
5252
- name: Test with pytest
5353
run: |
5454
poetry run pytest

0 commit comments

Comments
 (0)