2015-01-22 14:56:32 -06:00
|
|
|
sudo: false
|
|
|
|
|
2014-08-05 12:16:53 -05:00
|
|
|
language: go
|
|
|
|
|
|
|
|
go:
|
2016-02-17 16:29:53 -06:00
|
|
|
- 1.6
|
2014-08-05 12:16:53 -05:00
|
|
|
|
2016-01-29 13:53:56 -06:00
|
|
|
# Need to ensure at least something remains in the install stanza to opt out of
|
|
|
|
# Travis's built-in 'godep restore', which will fail Travis
|
|
|
|
# See https://docs.travis-ci.com/user/languages/go#godep-support
|
|
|
|
install:
|
|
|
|
- echo noop
|
2014-08-05 12:16:53 -05:00
|
|
|
|
|
|
|
script:
|
2016-02-17 15:30:02 -06:00
|
|
|
- make test vet
|
2014-08-05 12:16:53 -05:00
|
|
|
|
2015-01-22 14:57:01 -06:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2015-01-22 15:02:03 -06:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
|
|
|
- "irc.freenode.org#terraform-tool"
|
|
|
|
skip_join: true
|
|
|
|
use_notice: true
|
|
|
|
|
2014-08-05 12:16:53 -05:00
|
|
|
matrix:
|
2015-01-22 14:56:32 -06:00
|
|
|
fast_finish: true
|
|
|
|
allow_failures:
|
|
|
|
- go: tip
|