Add travis config.

This commit is contained in:
Kyle Isom
2017-11-21 12:30:06 -08:00
parent afef3eea62
commit 263a5d3973

18
.travis.yml Normal file
View File

@@ -0,0 +1,18 @@
sudo: false
language: go
go:
- tip
- 1.9
- 1.8
script:
- go get golang.org/x/tools/cmd/vet
- go get golang.org/x/tools/cmd/cover
- go get github.com/kisom/goutils/...
- go test -cover github.com/kisom/goutils/...
- go vet github.com/kisom/goutils/...
notifications:
email:
recipients:
- coder@kyleisom.net
on_success: change
on_failure: change