fix os name that required lowercase #136
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: ["push", "pull_request"] | |
name: Test Coveralls Parallel | |
jobs: | |
build: | |
env: | |
CGO_ENABLED: 1 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: | |
- "1.22" | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- uses: actions/checkout@v4 | |
- run: make build | |
test: | |
needs: build | |
env: | |
CGO_ENABLED: 1 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: | |
- "1.22" | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- uses: actions/checkout@v4 | |
- run: make test | |
- name: Send coverage | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: make goveralls-push |