Skip to content

Commit

Permalink
Using tparse for nicer CI test display (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
oxisto committed Nov 29, 2022
1 parent 2101c1f commit 2f0984a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
uses: actions/setup-go@v3
with:
go-version: "${{ matrix.go }}"
check-latest: true
cache: true
- name: Check Go code formatting
run: |
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
Expand All @@ -42,6 +44,7 @@ jobs:
fi
- name: Build
run: |
go install github.com/mfridman/tparse@latest
go vet ./...
go test -v ./...
go test -v -race -count=1 -json -coverpkg=$(go list ./...) ./... | tparse -follow -notests
go build ./...

0 comments on commit 2f0984a

Please sign in to comment.