Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Kellen committed Jan 10, 2021
1 parent 78be655 commit 3cb7251
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,14 @@ jobs:
name: build and test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2-beta
- uses: actions/setup-go@v2
with:
go-version: '^1.14.0'
go-version: 1.15
- run: go mod download
- name: build and test
run: |
go build -v .
go test -v $(go list ./... | grep -v hack | grep -v test) -coverprofile=profile.cov
env:
CGO_ENABLED: 0
CGO_ENABLED=0 go test -v $(go list ./... | grep -v hack | grep -v test) -coverprofile=profile.cov
- name: push code coverage to coveralls.io
if: matrix.os == 'ubuntu-latest'
uses: shogo82148/actions-goveralls@v1.2.2
Expand Down

0 comments on commit 3cb7251

Please sign in to comment.