forked from mirrors/tar-split
Vincent Batts
beaeceb06f
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>
15 lines
191 B
YAML
15 lines
191 B
YAML
language: go
|
|
go:
|
|
- tip
|
|
- 1.6.2
|
|
- 1.5.4
|
|
|
|
# let us have pretty, fast Docker-based Travis workers!
|
|
sudo: false
|
|
|
|
install:
|
|
- go get -d ./...
|
|
|
|
script:
|
|
- go test -v ./...
|
|
- go vet ./...
|