Skip to content

Merge pull request #2 from jamestelfer:kmsdoc #10

Merge pull request #2 from jamestelfer:kmsdoc

Merge pull request #2 from jamestelfer:kmsdoc #10

Workflow file for this run

name: Test and coverage
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run coverage
run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}