transfer.sh/.travis.yml

20 lines
288 B
YAML
Raw Normal View History

2014-10-16 20:01:43 +02:00
language: go
2017-03-22 20:59:56 +01:00
sudo: false
2014-10-16 20:01:43 +02:00
os:
- linux
go:
- 1.9.x
- 1.10.x
- 1.11.x
- tip
2017-03-22 20:47:33 +01:00
2017-03-22 20:59:56 +01:00
install:
- echo "This is an override of the default install deps step in travis."
script:
- go build -v .
- go vet $(go list ./... | grep -v vendor)
- go test $(go list ./... | grep -v vendor)