forked from mirrors/tar-split
Vincent Batts
245403c324
Thanks to @tianon, for pointing to
5e3ef60b0d/lib/travis/build/config.rb (L54-L70)
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
18 lines
219 B
YAML
18 lines
219 B
YAML
language: go
|
|
go:
|
|
- tip
|
|
- 1.x
|
|
- 1.8.x
|
|
- 1.7.x
|
|
- 1.6.x
|
|
- 1.5.x
|
|
|
|
# let us have pretty, fast Docker-based Travis workers!
|
|
sudo: false
|
|
|
|
install:
|
|
- go get -d ./...
|
|
|
|
script:
|
|
- go test -v ./...
|
|
- go vet ./...
|