1
0
Fork 0

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 <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-06-26 14:56:04 -04:00
parent 54e3a92a60
commit beaeceb06f
1 changed files with 2 additions and 4 deletions

View File

@ -1,16 +1,14 @@
language: go language: go
go: go:
- tip - tip
- 1.5.1 - 1.6.2
- 1.4.3 - 1.5.4
- 1.3.3
# let us have pretty, fast Docker-based Travis workers! # let us have pretty, fast Docker-based Travis workers!
sudo: false sudo: false
install: install:
- go get -d ./... - go get -d ./...
- go get golang.org/x/tools/cmd/vet
script: script:
- go test -v ./... - go test -v ./...