Skip to content

Commit c99be7d

Browse files
committed
CI fixes
1 parent 433ece5 commit c99be7d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ notifications:
1313
on_failure: always
1414

1515
before_install:
16-
- go get -u github.com/go-playground/overalls
1716
- go get -u github.com/mattn/goveralls
18-
- go get -u golang.org/x/tools/cmd/cover
1917

2018
before_script:
2119
- go mod download
@@ -26,5 +24,5 @@ script:
2624

2725
after_success: |
2826
[ $TRAVIS_GO_VERSION = 1.15.6 ] &&
29-
overalls -project="github.com/go-playground/webhooks" -covermode=count -ignore=.git,_examples,testdata -debug &&
30-
goveralls -coverprofile=overalls.coverprofile -service travis-ci -repotoken $COVERALLS_TOKEN
27+
go test ./... -covermode=count -coverprofile=coverage.out &&
28+
goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN

0 commit comments

Comments
 (0)