Skip to content

Add tests for failing commits #57

Add tests for failing commits

Add tests for failing commits #57

Workflow file for this run

name: tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22.0"
- name: Test
run: GOEXPERIMENT=nocoverageredesign go test -v -tags=integration -coverpkg=./... -coverprofile=coverage.out $(go list ./... | grep -v /examples/)
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true