Skip to content

Commit 27b8dca

Browse files
committed
Attempt to fix CI's mypy
1 parent 3403833 commit 27b8dca

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python 3.11
1717
uses: actions/setup-python@v2
1818
with:
19-
python-version: 3.11.9
19+
python-version: 3.11.11
2020

2121
- uses: actions/cache@v3
2222
with:
@@ -42,9 +42,12 @@ jobs:
4242
run: |
4343
isort --check-only .
4444
45+
- name: Check mypy version
46+
run: mypy --version
47+
4548
- name: Check types with mypy
4649
run: |
47-
mypy . | mypy-baseline filter
50+
mypy --config-file mypy.ini . | mypy-baseline filter
4851
4952
tests:
5053
name: Python tests

0 commit comments

Comments
 (0)