Skip to content

ci(github): update contributing doc #45

ci(github): update contributing doc

ci(github): update contributing doc #45

Workflow file for this run

name: Reporting test coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.22.2'
- name: Checkout code
uses: actions/checkout@v4
- name: Test with coverage
run: go test -gcflags=-l -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.txt