1language: go
2sudo: false
3
4go:
5  - 1.9.x
6  - 1.12.x
7  - tip
8
9matrix:
10  allow_failures:
11    - go: tip
12
13script:
14  - go test -v ./...
15