mirror of
https://github.com/GoTestTools/gotestfmt-action.git
synced 2026-02-19 06:01:45 +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
|
uses: actions/checkout@v2
|
||||||
- name: Run gotestfmt
|
- name: Run gotestfmt
|
||||||
working-directory: testdata
|
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