Skip to content

Merge pull request #19 from shogo82148/dependabot/github_actions/gith… #64

Merge pull request #19 from shogo82148/dependabot/github_actions/gith…

Merge pull request #19 from shogo82148/dependabot/github_actions/gith… #64

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