From 8b9e3dfb1076807a40bbc9fe9b21d87da7389b65 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sun, 22 Oct 2023 00:21:47 -0700 Subject: [PATCH] Export testrun.json as a file so that we can also download it for manual inspection/processing --- .github/workflows/go-test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 622c67e..161ca2f 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -69,6 +69,12 @@ jobs: run: | go install gotest.tools/gotestsum@latest make test + - name: Archive test results + uses: actions/upload-artifact@v3 + with: + name: test-results.json + path: /tmp/testrun.json + # - name: Setup tmate session # if: ${{ failure() }} # uses: mxschmitt/action-tmate@v3