Skip to content

Commit 5d4736f

Browse files
committed
fix
1 parent 97a44c7 commit 5d4736f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/python.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@ jobs:
2323
restore-keys: |
2424
${{ runner.os }}-python-
2525
26-
- name: Install dependencies and linters
26+
- name: Install all dependencies and tools
2727
run: |
2828
python -m pip install --upgrade pip
2929
pip install ruff bandit mypy pytest codespell
3030
31+
- name: Run Codespell check
32+
run: codespell || true
33+
34+
- name: Run Bandit security scan
35+
run: bandit -r . || true
36+
3137
- name: Run Ruff checks with ignored rules
3238
run: |
3339
ruff check . --ignore B904,B905,EM101,EXE001,G004,ISC001,PLC0415,PLC1901,PLW060,PLW1641,PLW2901,PT011,PT018,PT028,S101,S311,SIM905,SLF001,UP038
3440
3541
- name: Run Mypy type checks
3642
run: mypy . --ignore-missing-imports || true
3743

38-
- name: Run Codespell check
39-
run: codespell || true
40-
41-
- name: Run Bandit security scan
42-
run: bandit -r . || true
43-
4444
- name: Run Pytest tests
4545
run: pytest

0 commit comments

Comments
 (0)