Skip to content

Merge pull request #8 from sixcolors/dependabot/github_actions/golang… #16

Merge pull request #8 from sixcolors/dependabot/github_actions/golang…

Merge pull request #8 from sixcolors/dependabot/github_actions/golang… #16

Workflow file for this run

on: ["push", "pull_request"]
name: Coverage
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
check-latest: true
- run: go test -v -coverprofile=profile.cov ./...
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov