1language: go
2
3sudo: false
4
5go:
6  - 1.5.x
7  - 1.6.x
8  - 1.7.x
9  - 1.8.x
10  - 1.9.x
11  - 1.10.x
12  - 1.11.x
13  - 1.12.x
14  - 1.13.x
15  - 1.14.x
16  - 1.15.x
17  - tip
18
19allow_failures:
20  - go: tip
21
22script: make build
23
24matrix:
25  include:
26    - language: go
27      go: 1.15.x
28      script: make test
29