Add test log as an exported file from github actions

This commit is contained in:
David Dworken 2023-12-20 15:02:16 -08:00
parent 81733cd25c
commit 81081073a3
No known key found for this signature in database

View File

@ -93,6 +93,12 @@ jobs:
with: with:
name: test-goldens-${{ matrix.os }} name: test-goldens-${{ matrix.os }}
path: /tmp/test-goldens/ path: /tmp/test-goldens/
- name: Upload test log
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: testlog.txt
path: /tmp/test.log
# - name: Setup tmate session # - name: Setup tmate session
# if: ${{ failure() }} # if: ${{ failure() }}