Skip to content

coverage: try to use generated coverage.out #7

coverage: try to use generated coverage.out

coverage: try to use generated coverage.out #7

Workflow file for this run

name: Test, lint and build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Test
run: make test
- name: Lint
run: make lint
- name: Build
run: make build
- name: Update coverage report
uses: ncruces/go-coverage-report@v0
with:
coverage-file: coverage.out
report: true
chart: true
amend: true
reuse-go: true
continue-on-error: true