We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tparse
1 parent 2101c1f commit 2f0984aCopy full SHA for 2f0984a
.github/workflows/build.yml
@@ -33,6 +33,8 @@ jobs:
33
uses: actions/setup-go@v3
34
with:
35
go-version: "${{ matrix.go }}"
36
+ check-latest: true
37
+ cache: true
38
- name: Check Go code formatting
39
run: |
40
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
@@ -42,6 +44,7 @@ jobs:
42
44
fi
43
45
- name: Build
46
47
+ go install github.com/mfridman/tparse@latest
48
go vet ./...
- go test -v ./...
49
+ go test -v -race -count=1 -json -coverpkg=$(go list ./...) ./... | tparse -follow -notests
50
go build ./...
0 commit comments