terraform/.travis.yml

26 lines
522 B
YAML
Raw Normal View History

sudo: false
language: go
go:
2016-12-01 22:37:34 +01:00
- 1.7.4
install:
# This script is used by the Travis build to install a cookie for
# go.googlesource.com so rate limits are higher when using `go get` to fetch
# packages that live there.
# See: https://github.com/golang/go/issues/12933
- bash scripts/gogetcookie.sh
script:
- make test vet
2015-01-22 21:57:01 +01:00
branches:
only:
- master
2015-01-22 22:02:03 +01:00
notifications:
irc:
channels:
- irc.freenode.org#terraform-tool
2015-01-22 22:02:03 +01:00
skip_join: true
use_notice: true
matrix:
fast_finish: true
allow_failures:
- go: tip