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 95cf29c commit c2421a4Copy full SHA for c2421a4
.github/workflows/test.yml
@@ -4,7 +4,7 @@ jobs:
4
test:
5
strategy:
6
matrix:
7
- go-version: [1.18.x, 1.19.x]
+ go-version: [1.18.x, 1.21.x]
8
os: [ubuntu-latest, macos-latest]
9
runs-on: ${{ matrix.os }}
10
steps:
@@ -24,5 +24,12 @@ jobs:
24
run: go test -race -bench . -benchmem ./...
25
- name: Test CBOR
26
run: go test -tags binary_log ./...
27
+ coverage:
28
+ steps:
29
- name: Update coverage report
30
uses: ncruces/go-coverage-report@main
31
+ with:
32
+ report: 'true'
33
+ chart: 'true'
34
+ amend: 'true'
35
+ continue-on-error: true
0 commit comments