influxdb/.travis.yml

19 lines
301 B
YAML
Raw Normal View History

2013-10-24 18:56:43 +00:00
language: go
go:
- 1.4
2013-10-24 19:11:13 +00:00
2015-01-11 19:17:52 +00:00
install:
2015-02-11 07:16:56 +00:00
- go get -d -v -t ./... && go build -v ./...
2015-01-11 22:35:12 +00:00
- go get -u golang.org/x/tools/cmd/vet;
2015-01-11 19:17:52 +00:00
2015-01-30 06:21:42 +00:00
script:
# Put each test command on its own line.
- go test -timeout 60s -v ./...
2015-01-30 06:21:42 +00:00
- go tool vet .
2013-10-29 15:40:08 +00:00
2014-04-15 20:14:28 +00:00
notifications:
email:
on_success: never
on_failure: change