.travis.yml

 1language: go
 2
 3go:
 4  - 1.10.x
 5  - 1.11.x
 6
 7before_install:
 8  - go get -t -v ./...
 9
10script:
11  - go test -race -coverprofile=coverage.txt -covermode=atomic
12
13after_success:
14  - bash <(curl -s https://codecov.io/bash)