26 lines
560 B
YAML
26 lines
560 B
YAML
name: Collect Code Coverage
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: "1.20"
|
|
- name: Run coverage
|
|
run: go test -race -failfast -coverprofile=coverage.txt -covermode=atomic -v ./...
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v3
|