mirror of
https://github.com/GoTestTools/gotestfmt-action.git
synced 2026-02-08 00:37:27 +00:00
More testing
This commit is contained in:
parent
03ad8ff09e
commit
ec3a52825f
1 changed files with 8 additions and 1 deletions
9
.github/workflows/selftest.yml
vendored
9
.github/workflows/selftest.yml
vendored
|
|
@ -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
|
||||
Loading…
Reference in a new issue