2012-12-26 18:18:56 +00:00
|
|
|
language: go
|
2014-11-09 21:48:09 -05:00
|
|
|
go:
|
2020-09-12 13:47:42 +09:00
|
|
|
- 1.15.x
|
2020-05-10 07:29:37 +01:00
|
|
|
env:
|
|
|
|
- COVER=true
|
2018-11-27 11:55:56 +00:00
|
|
|
install:
|
|
|
|
# Fetch dependencies
|
2020-03-29 12:53:22 +01:00
|
|
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOPATH/bin v1.24.0
|
2019-08-05 09:25:14 +01:00
|
|
|
- GO111MODULE=on go mod download
|
2020-05-10 07:29:37 +01:00
|
|
|
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
|
|
- chmod +x ./cc-test-reporter
|
|
|
|
before_script:
|
|
|
|
- ./cc-test-reporter before-build
|
2018-11-27 11:55:56 +00:00
|
|
|
script:
|
2020-05-09 16:07:46 +01:00
|
|
|
- make test
|
2020-05-10 07:29:37 +01:00
|
|
|
after_script:
|
|
|
|
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT -t gocov
|
2015-06-07 23:52:28 -04:00
|
|
|
sudo: false
|
2012-12-26 18:18:56 +00:00
|
|
|
notifications:
|
|
|
|
email: false
|