Skip to content

Commit dc8260e

Browse files
committed
run lints on 3.14 only
1 parent 25f3760 commit dc8260e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,25 @@ jobs:
4545
run: pytest -v
4646

4747
- name: Test flake8
48+
if: ${{ matrix.python-version == '3.14' }}
4849
run: flake8 matplotlib_inline --ignore=E501,W504,W503
4950

5051
- name: Install ruff
52+
if: ${{ matrix.python-version == '3.14' }}
5153
run: pip install ruff
5254

5355
- name: Check code with ruff
56+
if: ${{ matrix.python-version == '3.14' }}
5457
run: ruff check matplotlib_inline
5558

5659
- name: Check formatting with ruff
60+
if: ${{ matrix.python-version == '3.14' }}
5761
run: ruff format matplotlib_inline --check
5862

5963
- name: install Mypy
64+
if: ${{ matrix.python-version == '3.14' }}
6065
run : pip install mypy matplotlib
6166

6267
- name: run mypy
68+
if: ${{ matrix.python-version == '3.14' }}
6369
run: mypy .

0 commit comments

Comments
 (0)