blob: ea956adaf2e569f2028ef63eb52b645b7b9d2a98 [file] [log] [blame]
language: go
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- tip
# Setting sudo access to false will let Travis CI use containers rather than
# VMs to run the tests. For more details see:
# - http://docs.travis-ci.com/user/workers/container-based-infrastructure/
# - http://docs.travis-ci.com/user/workers/standard-infrastructure/
sudo: false
# The default script is go test -v ./... which will test everything
# in the vendor directory. We don't need to test all dependent packages.
# Only testing this project.
script:
- make test integration-test verify-version
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/67e4b42cbf763625d0b4
on_success: change
on_failure: always
on_start: never