From beaeceb06f0a81f66e6687a2d830ed3a1e6d0875 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Sun, 26 Jun 2016 14:56:04 -0400 Subject: [PATCH] travis: update golang versions This is not saying that tar-split no longer works on go1.3 or go1.4, but rather that the headache of `go vet` having a version dependent ability to install it, makes it a headache in travis. Signed-off-by: Vincent Batts --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c0a17c7..2d9a842 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,14 @@ language: go go: - tip - - 1.5.1 - - 1.4.3 - - 1.3.3 + - 1.6.2 + - 1.5.4 # let us have pretty, fast Docker-based Travis workers! sudo: false install: - go get -d ./... - - go get golang.org/x/tools/cmd/vet script: - go test -v ./...