From d053d71a6dce1add66cd9a15e741f86fbd182f01 Mon Sep 17 00:00:00 2001 From: Christian Banse Date: Sat, 3 Dec 2022 20:48:14 +0100 Subject: [PATCH] Added GitHub Actions Markdown --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cea5f11..d89f78c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 go build ./...