We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf95b01 commit 0f99640Copy full SHA for 0f99640
.github/workflows/build.yml
@@ -29,9 +29,13 @@ jobs:
29
echo "Please format Go code by running: go fmt ./..."
30
exit 1
31
fi
32
+ - name: Install tparse
33
+ run: |
34
+ curl -L -o tparse https://github.com/mfridman/tparse/releases/latest/download/tparse_linux_x86_64
35
+ chmod +x tparse
36
+ mv tparse $HOME/.local/bin/
37
- name: Build
38
run: |
- go install github.com/mfridman/tparse@latest
39
go vet ./...
40
go test -v -race -count=1 -json -cover ./... | tee output.json | tparse -follow -notests || true
41
tparse -format markdown -file output.json -all > $GITHUB_STEP_SUMMARY
0 commit comments