.travis.yml
1language: go
2
3go:
4 - 1.8.x
5 - 1.9.x
6 - 1.10.x
7 - tip
8
9matrix:
10 allow_failures:
11 - go: tip
12 fast_finish: true
13
14before_install:
15 - go get github.com/axw/gocov/gocov
16 - go get github.com/mattn/goveralls
17
18script:
19 - $HOME/gopath/bin/goveralls -race -service=travis-ci
20 - go vet ./...