File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -19,21 +19,22 @@ jobs:
1919 python -m pip install --upgrade pip wheel
2020 pip install bandit ruff mypy safety codespell
2121
22+ - name : Run Codespell
23+ run : codespell --config pyproject.toml || true
24+
25+ - name : Run Safety
26+ run : safety check || true
27+
2228 - name : Run Ruff (linting)
23- run : ruff check . --config pyproject.toml --fix
29+ run : ruff check . --config pyproject.toml
2430
2531 - name : Run Ruff (formatting check)
2632 run : ruff format --check . --config pyproject.toml || true
2733
2834 - name : Run Bandit
2935 run : bandit --recursive --skip B101 . || true
3036
31- - name : Run Codespell
32- run : codespell --config pyproject.toml || true
33-
34- - name : Run Safety
35- run : safety check || true
36-
37+
3738 - name : Setup Mypy cache
3839 run : mkdir -p .mypy_cache
3940
You can’t perform that action at this time.
0 commit comments