Skip to content

Commit 560db06

Browse files
committed
Run all cq steps regardless of failures
1 parent 556d57b commit 560db06

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/code_quality.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,23 @@ jobs:
3232
run: uv sync
3333

3434
- name: Formatting (Ruff)
35+
if: success()
36+
continue-on-error: true
3537
run: uv run make.py format --check
3638

3739
- name: Linting (Ruff)
40+
if: success()
41+
continue-on-error: true
3842
run: uv run make.py ruff-check
3943

4044
- name: Type Checking (MyPy)
45+
if: success()
46+
continue-on-error: true
4147
run: uv run make.py mypy
4248

4349
- name: Type Checking (Pyright)
50+
if: success()
51+
continue-on-error: true
4452
run: uv run make.py pyright
4553

4654
verifytypes:

0 commit comments

Comments
 (0)