Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2017-01-13 11:08:03 -08:00 коммит произвёл Jess Frazelle
Родитель 0c0d9a6d96
Коммит d69f29fedf
1 изменённых файлов: 17 добавлений и 0 удалений

17
.travis.yml Normal file
Просмотреть файл

@ -0,0 +1,17 @@
---
language: go
sudo: false
notifications:
email: false
os:
- linux
go:
- 1.7
- tip
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)
- test -z "$(gofmt -s -l . |& grep -v vendor | tee /dev/stderr)"
- go test $(go list ./... | grep -v vendor)