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 556d57b commit 560db06Copy full SHA for 560db06
.github/workflows/code_quality.yml
@@ -32,15 +32,23 @@ jobs:
32
run: uv sync
33
34
- name: Formatting (Ruff)
35
+ if: success()
36
+ continue-on-error: true
37
run: uv run make.py format --check
38
39
- name: Linting (Ruff)
40
41
42
run: uv run make.py ruff-check
43
44
- name: Type Checking (MyPy)
45
46
47
run: uv run make.py mypy
48
49
- name: Type Checking (Pyright)
50
51
52
run: uv run make.py pyright
53
54
verifytypes:
0 commit comments