Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

Commit

Permalink
Travis: use Go 11 for modules
Browse files Browse the repository at this point in the history
  • Loading branch information
markus-wa committed Nov 28, 2018
1 parent 7014aa5 commit b2b3542
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: go
sudo: required

go:
- 1.10.x
- 1.11.x
- stable
- master

Expand All @@ -11,6 +11,13 @@ matrix:
allow_failures:
- go: master

env:
- GO111MODULE=on

# Override Travis's default 'go get' step, since we use Go modules
install:
- go mod download

before_script:
# Don't record coverage for protobuf/gen & replay/nondefault
- cover_packages=$(go list ./... | grep -v "protobuf/gen\|replay/nondefault" | awk -vORS=',' '{ print $1 }' | sed 's/,$/\n/')
Expand Down

0 comments on commit b2b3542

Please sign in to comment.