Skip to content

Commit

Permalink
use specific go version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ross-pure committed Apr 9, 2021
1 parent 8addb15 commit b791d51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "^1.15.5"
go-version: "1.15.5"
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
Expand All @@ -34,6 +34,7 @@ jobs:
run: |
cd $GITHUB_WORKSPACE
export PATH=$PATH:$(go env GOPATH)/bin
go get github.com/onsi/gomega/matchers@v1.10.1
go get -u github.com/mattn/goveralls
go test --race --cover --coverprofile secp256k1.coverprofile ./...
goveralls -coverprofile=secp256k1.coverprofile -service=circleci -repotoken $COVERALLS_TOKEN

0 comments on commit b791d51

Please sign in to comment.