2018-07-14 21:58:30 +00:00
|
|
|
language: go
|
2018-07-25 22:28:26 +00:00
|
|
|
|
2018-07-14 21:58:30 +00:00
|
|
|
go:
|
2018-07-25 22:28:26 +00:00
|
|
|
- 1.x
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
|
|
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
|
|
|
2018-07-14 21:58:30 +00:00
|
|
|
install:
|
2018-07-25 22:28:26 +00:00
|
|
|
- chmod +x ./cc-test-reporter
|
|
|
|
- dep ensure
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- ./cc-test-reporter before-build
|
|
|
|
|
2018-07-14 22:17:18 +00:00
|
|
|
script:
|
2018-07-25 22:28:26 +00:00
|
|
|
- go test -v -coverprofile=c.out ./...
|
|
|
|
|
|
|
|
after_script:
|
|
|
|
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|