Skip to content

Commit 1f20b49

Browse files
authored
Update Python CI.yml
1 parent 3e5cbc5 commit 1f20b49

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/Python CI.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)