Skip to content

Merge pull request #18 from shogo82148/dependabot/github_actions/acti… #62

Merge pull request #18 from shogo82148/dependabot/github_actions/acti…

Merge pull request #18 from shogo82148/dependabot/github_actions/acti… #62

Workflow file for this run

name: test
on:
push:
branches: main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- "1.21"
- "1.20"
- "1.19"
- "1.18"
- "1.17"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "${{ matrix.go }}"
- run: go test -v -coverprofile=profile.cov ./...
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov