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 fa9012c commit 2e24ce6Copy full SHA for 2e24ce6
.github/workflows/check.yml
@@ -28,7 +28,12 @@ jobs:
28
uv venv
29
uv pip sync requirements.txt
30
uv run ruff check --exit-zero .
31
- uv run black --check .
+ if uv run black --check . ; then
32
+ echo "Black formatting check passed."
33
+ else
34
+ echo "Black formatting check failed. Please run 'uvx black .' to format your code."
35
+ exit 1
36
+ fi
37
working-directory: .
38
- name: Run Pyright and summarize errors if any
39
run: |
0 commit comments