File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -45,19 +45,25 @@ jobs:
4545run : pytest -v
4646
4747 - name : Test flake8
48+ if : ${{matrix.python-version == '3.14'}}
4849run : flake8 matplotlib_inline --ignore=E501,W504,W503
4950
5051 - name : Install ruff
52+ if : ${{matrix.python-version == '3.14'}}
5153run : pip install ruff
5254
5355 - name : Check code with ruff
56+ if : ${{matrix.python-version == '3.14'}}
5457run : ruff check matplotlib_inline
5558
5659 - name : Check formatting with ruff
60+ if : ${{matrix.python-version == '3.14'}}
5761run : ruff format matplotlib_inline --check
5862
5963 - name : install Mypy
64+ if : ${{matrix.python-version == '3.14'}}
6065run : pip install mypy matplotlib
6166
6267 - name : run mypy
68+ if : ${{matrix.python-version == '3.14'}}
6369run : mypy .
You can’t perform that action at this time.
0 commit comments