From 4ad26970d82b2766dafe00f541d8bf931fa270b2 Mon Sep 17 00:00:00 2001 From: M Date: Fri, 28 Aug 2026 12:34:55 +0200 Subject: [PATCH] Report both Go versions even when the first fails --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d23d851..31cd9e6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,10 @@ jobs: persist-credentials: false - name: Latest supported Go run: docker compose run --rm ci + # Runs even when the step above failed, so a red build says whether the + # failure is version-specific. - name: Lowest supported Go + if: ${{ !cancelled() }} env: GO_VERSION: 1.22.12 run: docker compose run --rm ci