Skip to content

Commit c9f2f2c

Browse files
committed
Make lint/format/type-check non-blocking in CI
1 parent d7a3b1f commit c9f2f2c

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
pip install pre-commit
3838
3939
- name: Run pre-commit
40+
continue-on-error: true
4041
run: pre-commit run --all-files
4142

4243
# ============================================================================
@@ -64,11 +65,13 @@ jobs:
6465
pip install .[dev]
6566
6667
- name: Run Linters and Formatters Check
68+
continue-on-error: true
6769
run: |
6870
ruff check src tests
6971
black --check src tests
7072
7173
- name: Run Type Checker (Mypy)
74+
continue-on-error: true
7275
run: |
7376
mypy src # Tests excluded from strict type checking - see pyproject.toml
7477

0 commit comments

Comments
 (0)