Export testrun.json as a file so that we can also download it for manual inspection/processing

This commit is contained in:
David Dworken 2023-10-22 00:21:47 -07:00
parent 60d388c4c2
commit 8b9e3dfb10
No known key found for this signature in database

View File

@ -69,6 +69,12 @@ jobs:
run: | run: |
go install gotest.tools/gotestsum@latest go install gotest.tools/gotestsum@latest
make test make test
- name: Archive test results
uses: actions/upload-artifact@v3
with:
name: test-results.json
path: /tmp/testrun.json
# - name: Setup tmate session # - name: Setup tmate session
# if: ${{ failure() }} # if: ${{ failure() }}
# uses: mxschmitt/action-tmate@v3 # uses: mxschmitt/action-tmate@v3