mirror of
https://github.com/Crocmagnon/fatcontext.git
synced 2024-11-15 12:44:01 +01:00
add coverage report
This commit is contained in:
parent
cddb074802
commit
0c76b071d6
1 changed files with 12 additions and 0 deletions
12
.github/workflows/go.yml
vendored
12
.github/workflows/go.yml
vendored
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue