Skip to content

fix os name that required lowercase #136

fix os name that required lowercase

fix os name that required lowercase #136

Workflow file for this run

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