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  - 1.11.x
10  - 1.12.x
11  - tip
12
13# Setting sudo access to false will let Travis CI use containers rather than
14# VMs to run the tests. For more details see:
15# - http://docs.travis-ci.com/user/workers/container-based-infrastructure/
16# - http://docs.travis-ci.com/user/workers/standard-infrastructure/
17sudo: false
18
19script:
20  - make setup
21  - make test
22
23notifications:
24  webhooks:
25    urls:
26      - https://webhooks.gitter.im/e/06e3328629952dabe3e0
27    on_success: change  # options: [always|never|change] default: always
28    on_failure: always  # options: [always|never|change] default: always
29    on_start: never     # options: [always|never|change] default: always
30