1language: go
2
3go:
4    - 1.8
5    - 1.x
6    - tip
7
8script:
9    - go test
10
11matrix:
12    allow_failures:
13        - go: tip
14