From 7814d139ee4009983e1b2b9164ff46dfce46a3dc Mon Sep 17 00:00:00 2001 From: Daniel Simmons Date: Mon, 21 Jul 2025 12:08:21 +0200 Subject: [PATCH] Add test results artifact upload to GitHub Actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Uploads test-results.json as an artifact even on test failures to help with debugging. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/checks.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 3a7a441..a722324 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -27,6 +27,13 @@ jobs: with: test-results: test-results.json + - name: Upload test results + if: always() + uses: actions/upload-artifact@v4 + with: + name: test-results + path: test-results.json + - name: Check coverage uses: vladopajic/go-test-coverage@v2 with: