goutils/.travis.yml

19 lines
388 B
YAML
Raw Normal View History

2017-11-21 20:30:06 +00:00
sudo: false
language: go
go:
- tip
- 1.9
- 1.8
script:
2017-11-21 20:52:26 +00:00
- go get github.com/golang/lint/golint
2017-11-21 20:30:06 +00:00
- go get golang.org/x/tools/cmd/cover
- go get github.com/kisom/goutils/...
- go test -cover github.com/kisom/goutils/...
2017-11-21 20:52:26 +00:00
- go lint github.com/kisom/goutils/...
2017-11-21 20:30:06 +00:00
notifications:
email:
recipients:
- coder@kyleisom.net
on_success: change
on_failure: change