add coverage report

This commit is contained in:
Gabriel Augendre 2024-10-30 16:12:54 +01:00 committed by Gabriel Augendre
parent cddb074802
commit 0c76b071d6

View file

@ -29,3 +29,15 @@ jobs:
run: go build -v ./... run: go build -v ./...
- name: Test - name: Test
run: make test run: make test
- name: Update coverage report
uses: ncruces/go-coverage-report@v0
with:
report: true
chart: true
amend: true
if: |
matrix.os == 'ubuntu-latest' &&
matrix.go == '1.23' &&
github.event_name == 'push'
continue-on-error: true