We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7a3b1f commit c9f2f2cCopy full SHA for c9f2f2c
1 file changed
.github/workflows/ci.yml
@@ -37,6 +37,7 @@ jobs:
37
pip install pre-commit
38
39
- name: Run pre-commit
40
+ continue-on-error: true
41
run: pre-commit run --all-files
42
43
# ============================================================================
@@ -64,11 +65,13 @@ jobs:
64
65
pip install .[dev]
66
67
- name: Run Linters and Formatters Check
68
69
run: |
70
ruff check src tests
71
black --check src tests
72
73
- name: Run Type Checker (Mypy)
74
75
76
mypy src # Tests excluded from strict type checking - see pyproject.toml
77
0 commit comments