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 bf7c558 commit f09ba47Copy full SHA for f09ba47
.github/workflows/Python CI.yml
@@ -24,13 +24,12 @@ jobs:
24
25
- name: Run Bandit
26
run: bandit --recursive --skip B101 . || true
27
-
+ - name: Run Ruff (formatting check)
28
+ run: ruff format --check . --config pyproject.toml || true
29
+
30
- name: Run Ruff (linting)
31
run: ruff check . --config pyproject.toml
32
- - name: Run Ruff (formatting check)
- run: ruff format --check . --config pyproject.toml
33
34
- name: Setup Mypy cache
35
run: mkdir -p .mypy_cache
36
0 commit comments