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:
19
19
python -m pip install --upgrade pip wheel
20
20
pip install bandit ruff mypy safety codespell
21
21
22
+ - name : Run Codespell
23
+ run : codespell --config pyproject.toml || true
24
+
25
+ - name : Run Safety
26
+ run : safety check || true
27
+
22
28
- name : Run Ruff (linting)
23
- run : ruff check . --config pyproject.toml --fix
29
+ run : ruff check . --config pyproject.toml
24
30
25
31
- name : Run Ruff (formatting check)
26
32
run : ruff format --check . --config pyproject.toml || true
27
33
28
34
- name : Run Bandit
29
35
run : bandit --recursive --skip B101 . || true
30
36
31
- - name : Run Codespell
32
- run : codespell --config pyproject.toml || true
33
-
34
- - name : Run Safety
35
- run : safety check || true
36
-
37
+
37
38
- name : Setup Mypy cache
38
39
run : mkdir -p .mypy_cache
39
40
You can’t perform that action at this time.
0 commit comments