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 964990e commit bf7c558Copy full SHA for bf7c558
.github/workflows/Python CI.yml
@@ -1,7 +1,7 @@
1
name: Python CI
2
on: [pull_request, push]
3
jobs:
4
- CI_Build:
+ Build:
5
runs-on: ubuntu-latest
6
steps:
7
- name: Checkout code
@@ -17,7 +17,7 @@ jobs:
17
- name: Install check dependencies
18
run: |
19
python -m pip install --upgrade pip wheel
20
- pip install bandit ruff mypy safety codespell
+ pip install bandit ruff mypy codespell
21
22
- name: Run Codespell
23
run: codespell --config pyproject.toml || true
@@ -30,9 +30,7 @@ jobs:
30
31
- name: Run Ruff (formatting check)
32
run: ruff format --check . --config pyproject.toml
33
-
34
35
+
36
- name: Setup Mypy cache
37
run: mkdir -p .mypy_cache
38
0 commit comments