fix(ci): continue update-badges job on pylint/pyright errors
test / unit (push) Successful in 38s
test / integration (push) Successful in 56s

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 <noreply@anthropic.com>
This commit is contained in:
2026-06-06 00:32:26 -04:00
parent 3f982009e2
commit 881869352d
+2
View File
@@ -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)