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 1f20b49 commit 4af1c75Copy full SHA for 4af1c75
.github/workflows/Python CI.yml
@@ -22,18 +22,16 @@ jobs:
22
- name: Run Codespell
23
run: codespell --config pyproject.toml || true
24
25
- - name: Run Safety
26
- run: safety check || true
27
-
+ - name: Run Bandit
+ run: bandit --recursive --skip B101 . || true
+
28
- name: Run Ruff (linting)
29
run: ruff check . --config pyproject.toml
30
31
- name: Run Ruff (formatting check)
32
run: ruff format --check . --config pyproject.toml || true
33
34
- - name: Run Bandit
35
- run: bandit --recursive --skip B101 . || true
36
37
38
- name: Setup Mypy cache
39
run: mkdir -p .mypy_cache
0 commit comments