We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f3760 commit dc8260eCopy full SHA for dc8260e
1 file changed
.github/workflows/main.yml
@@ -45,19 +45,25 @@ jobs:
45
run: pytest -v
46
47
- name: Test flake8
48
+ if: ${{ matrix.python-version == '3.14' }}
49
run: flake8 matplotlib_inline --ignore=E501,W504,W503
50
51
- name: Install ruff
52
53
run: pip install ruff
54
55
- name: Check code with ruff
56
57
run: ruff check matplotlib_inline
58
59
- name: Check formatting with ruff
60
61
run: ruff format matplotlib_inline --check
62
63
- name: install Mypy
64
65
run : pip install mypy matplotlib
66
67
- name: run mypy
68
69
run: mypy .
0 commit comments