Added GitHub Actions Markdown (#260)

This commit is contained in:
Christian Banse 2023-02-19 14:01:18 +01:00 committed by GitHub
parent 9358574a7a
commit 4fd5621d8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -46,5 +46,6 @@ jobs:
run: |
go install github.com/mfridman/tparse@latest
go vet ./...
go test -v -race -count=1 -json -coverpkg=$(go list ./...) ./... | tparse -follow -notests
go test -v -race -count=1 -json -coverpkg=$(go list ./...) ./... | tee output.json | tparse -follow -notests || true
tparse -format markdown -file output.json -all > $GITHUB_STEP_SUMMARY
go build ./...