From c99be7dbb81722b3548d4df71931ab4f140dfd02 Mon Sep 17 00:00:00 2001 From: Anton Krivenko Date: Sun, 10 Jan 2021 02:10:23 +0300 Subject: [PATCH] CI fixes --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 149cd16..d55a454 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,9 +13,7 @@ notifications: on_failure: always before_install: - - go get -u github.com/go-playground/overalls - go get -u github.com/mattn/goveralls - - go get -u golang.org/x/tools/cmd/cover before_script: - go mod download @@ -26,5 +24,5 @@ script: after_success: | [ $TRAVIS_GO_VERSION = 1.15.6 ] && - overalls -project="github.com/go-playground/webhooks" -covermode=count -ignore=.git,_examples,testdata -debug && - goveralls -coverprofile=overalls.coverprofile -service travis-ci -repotoken $COVERALLS_TOKEN + go test ./... -covermode=count -coverprofile=coverage.out && + goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN