Update black step to continue on error

Modified the black formatting step to continue on error.
This commit is contained in:
Moritz
2026-03-10 12:43:41 +01:00
committed by mr-tz
parent 1d484c13b3
commit 23156c6d86

View File

@@ -38,7 +38,9 @@ jobs:
- name: Run isort
run: pre-commit run isort --all-files
- name: Run black
- name: Run black/continue
# black returns non-zero error code after formatting, which is what we expect
continue-on-error: true
run: pre-commit run black --all-files
- name: Check for changes