1language: go
2
3sudo: false
4
5go:
6#  - 1.3
7#  - 1.4
8#  - 1.5
9#  - 1.6
10#  - 1.7
11#  - 1.8.x
12#  - 1.9.x
13  - 1.10.x
14  - 1.11.x
15  - tip
16
17install:
18  - go get -v -t ./...
19
20script:
21  - go test ./... -coverprofile=coverage.txt -covermode=atomic
22
23after_success:
24  - bash <(curl -s https://codecov.io/bash)
25
26matrix:
27  allow_failures:
28    - go: tip
29