From 23156c6d8683bc00808248ae785eeb9b74a8e3b0 Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 10 Mar 2026 12:43:41 +0100 Subject: [PATCH] Update black step to continue on error Modified the black formatting step to continue on error. --- .github/workflows/black-format.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/black-format.yml b/.github/workflows/black-format.yml index 77ccbfc2..e103ffd0 100644 --- a/.github/workflows/black-format.yml +++ b/.github/workflows/black-format.yml @@ -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