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 d0bbc1e commit 1f7eb32Copy full SHA for 1f7eb32
.github/workflows/lint_python.yml
@@ -1,5 +1,5 @@
1
-name: lint_python
2
-on: [pull_request, push]
+name: lint
+on: [pull_request, push, workflow_dispatch]
3
jobs:
4
pre-commit:
5
runs-on: ubuntu-latest
@@ -19,11 +19,9 @@ jobs:
19
- uses: actions/checkout@v4
20
- uses: actions/setup-python@v5
21
- run: pip install --upgrade pip
22
- - run: pip install black codespell flake8 flake8-bugbear
23
- mypy pytest
+ - run: pip install black codespell flake8 flake8-bugbear mypy
24
- run: black --check . || true
25
- run: codespell # --ignore-words-list="" --skip="*.css,*.js,*.lock"
26
- run: pip install -r requirements.txt
27
- run: mkdir --parents --verbose .mypy_cache
28
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true
29
- - run: pytest .
0 commit comments