Skip to content

Commit

Permalink
Always run on the latest stable Go version. (#402)
Browse files Browse the repository at this point in the history
Only run vet on the latest Go version.
  • Loading branch information
elithrar authored and kisielk committed Sep 3, 2018
1 parent cf6680b commit 9e1f595
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ matrix:
- go: 1.9.x
- go: 1.10.x
- go: 1.11.x
- go: 1.x
env: LATEST=true
- go: tip
allow_failures:
- go: tip
Expand All @@ -18,5 +20,5 @@ install:
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- go tool vet .
- if [[ "$LATEST" = true ]]; then go tool vet .; fi
- go test -v -race ./...

0 comments on commit 9e1f595

Please sign in to comment.