From 881869352d98d2c808e987915de5b71a11e1db34 Mon Sep 17 00:00:00 2001 From: didericis Date: Sat, 6 Jun 2026 00:32:26 -0400 Subject: [PATCH] fix(ci): continue update-badges job on pylint/pyright errors Badges should reflect the current score even when there are lint/type errors, not abort the job entirely. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/update-badges.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/update-badges.yml b/.gitea/workflows/update-badges.yml index 8f380af..41657a6 100644 --- a/.gitea/workflows/update-badges.yml +++ b/.gitea/workflows/update-badges.yml @@ -31,6 +31,7 @@ jobs: - name: Run pylint and extract score id: pylint + continue-on-error: true run: | # Run pylint and capture the score PYLINT_OUTPUT=$(python -m pylint bot_bottle/ 2>&1 | tail -1) @@ -45,6 +46,7 @@ jobs: - name: Run pyright and check errors id: pyright + continue-on-error: true run: | # Run pyright and check for errors PYRIGHT_OUTPUT=$(python -m pyright 2>&1 | tail -1)