Adding coveralls back to travis-ci.

This commit is contained in:
Jakub Sobon 2020-11-13 01:53:58 -05:00 committed by GitHub
parent 5be11e3b8f
commit 0b92ce9aa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,8 @@ go:
- 1.14.x
- 1.15.x
- stable
before_install:
- go get github.com/mattn/goveralls
script:
- go get -t ./...
- go get -u golang.org/x/lint/golint
@ -12,6 +14,7 @@ script:
- diff -u <(echo -n) <(gofmt -d -s .)
- diff -u <(echo -n) <(./internal/scripts/autogen_licences.sh .)
- diff -u <(echo -n) <(golint ./...)
- $GOPATH/bin/goveralls -service=travis-ci
env:
global:
- CGO_ENABLED=0