From 814f57b0990ebbb238ad946f81495bf4ead24467 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Mon, 23 Feb 2026 09:44:35 -0800 Subject: [PATCH] Allows the typing job to error and still pass, so we get results, but not failures for now (#12147) --- .github/workflows/ci-backend.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-backend.yml b/.github/workflows/ci-backend.yml index 85d1fe3a9..0f05d1c94 100644 --- a/.github/workflows/ci-backend.yml +++ b/.github/workflows/ci-backend.yml @@ -129,6 +129,7 @@ jobs: run: | uv pip list - name: Check typing (pyrefly) + continue-on-error: true run: | uv run pyrefly \ check \ @@ -143,6 +144,7 @@ jobs: ${{ runner.os }}-mypy-py${{ env.DEFAULT_PYTHON }}- ${{ runner.os }}-mypy- - name: Check typing (mypy) + continue-on-error: true run: | uv run mypy \ --show-error-codes \