.travis.yml
env:
global:
- CC_TEST_REPORTER_ID=27d5c57c5c7512ea56bc4d548b76776d0e21140f4ec8e08a61ceef85bf98efb0
language: go
go:
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- tip
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- go test -coverprofile=c.out ./...
after_script:
- ./cc-test-reporter after-build --debug -t gocov --exit-code $TRAVIS_TEST_RESULT