1language: go
2
3go:
4  - 1.6
5  - 1.7
6  - 1.8
7  - tip
8
9# Setting sudo access to false will let Travis CI use containers rather than
10# VMs to run the tests. For more details see:
11# - http://docs.travis-ci.com/user/workers/container-based-infrastructure/
12# - http://docs.travis-ci.com/user/workers/standard-infrastructure/
13sudo: false
14
15script:
16  - GO15VENDOREXPERIMENT=1 make setup
17  - GO15VENDOREXPERIMENT=1 make test
18
19notifications:
20  webhooks:
21    urls:
22      - https://webhooks.gitter.im/e/06e3328629952dabe3e0
23    on_success: change  # options: [always|never|change] default: always
24    on_failure: always  # options: [always|never|change] default: always
25    on_start: never     # options: [always|never|change] default: always
26