Skip to content

Commit bb2a3e5

Browse files
authored
Add gotestfmt
1 parent 6121e25 commit bb2a3e5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@ jobs:
1818
uses: actions/setup-go@v4
1919
with:
2020
go-version: ${{ matrix.go-version }}
21+
- name: Set up gotestfmt
22+
run: go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
2123
- name: Test
22-
run: go test ./...
24+
run: |
25+
set -euo pipefail
26+
go test ./... | gotestfmt
2327
2428
debug:
2529
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)