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