1language: go
2
3script:
4  - go test -race -v ./...
5
6go:
7  - "1.9"
8  - "1.10"
9  - "1.11"
10  - "1.12"
11  - "1.13"
12  - tip
13
14matrix:
15  allow_failures:
16    - go: tip
17