From ec3a52825ff4a1f5a3ce32e653c248577798470a Mon Sep 17 00:00:00 2001 From: Janos <86970079+janosdebugs@users.noreply.github.com> Date: Wed, 28 Jul 2021 09:21:31 +0200 Subject: [PATCH] More testing --- .github/workflows/selftest.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/selftest.yml b/.github/workflows/selftest.yml index 6e768f1..9e49651 100644 --- a/.github/workflows/selftest.yml +++ b/.github/workflows/selftest.yml @@ -17,4 +17,11 @@ jobs: uses: actions/checkout@v2 - name: Run gotestfmt working-directory: testdata - run: go test -v ./... | gotestfmt + run: go test -v ./... 2>&1 | tee /tmp/gotest.log | gotestfmt + - name: Upload test log + uses: actions/upload-artifact@v2 + if: always() + with: + name: test-log + path: /tmp/gotest.log + if-no-files-found: error \ No newline at end of file