Skip to content

Commit ad77222

Browse files
committed
chore: improve coverage report
1 parent 95cf29c commit ad77222

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/test.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.18.x, 1.19.x]
7+
go-version: [1.18.x, 1.21.x]
88
os: [ubuntu-latest, macos-latest]
99
runs-on: ${{ matrix.os }}
1010
steps:
@@ -24,5 +24,13 @@ jobs:
2424
run: go test -race -bench . -benchmem ./...
2525
- name: Test CBOR
2626
run: go test -tags binary_log ./...
27+
coverage:
28+
runs-on: ubuntu-latest
29+
steps:
2730
- name: Update coverage report
2831
uses: ncruces/go-coverage-report@main
32+
with:
33+
report: 'true'
34+
chart: 'true'
35+
amend: 'true'
36+
continue-on-error: true

0 commit comments

Comments
 (0)