.travis.yml

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