Skip to content

Merge pull request #31 from h-waldschmidt/dependabot/go_modules/githu… #93

Merge pull request #31 from h-waldschmidt/dependabot/go_modules/githu…

Merge pull request #31 from h-waldschmidt/dependabot/go_modules/githu… #93

Workflow file for this run

name: Test and coverage
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Run coverage
run: go test $(go list ./... | grep -v /examples/) -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2