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 ad77222Copy full SHA for ad77222
.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,13 @@ jobs:
24
run: go test -race -bench . -benchmem ./...
25
- name: Test CBOR
26
run: go test -tags binary_log ./...
27
+ coverage:
28
+ runs-on: ubuntu-latest
29
+ steps:
30
- name: Update coverage report
31
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