From d1fa2118c12c44e4f5004da216d1efad10cb4924 Mon Sep 17 00:00:00 2001 From: Thomas Pelletier Date: Fri, 3 Feb 2017 13:36:21 -0800 Subject: [PATCH] Bump test go to 1.7.5 (#127) * Bump test go to 1.7.5 * Use travis container infrastructure * Don't run the tests twice on PRs --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 82e1775..43bd5b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,9 @@ +sudo: false language: go go: - 1.5.4 - 1.6.4 - - 1.7.4 + - 1.7.5 - tip matrix: allow_failures: @@ -14,5 +15,7 @@ before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi +branches: + only: [master] after_success: - $HOME/gopath/bin/goveralls -service=travis-ci