File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,7 @@ notifications:
13
13
on_failure : always
14
14
15
15
before_install :
16
- - go get -u github.com/go-playground/overalls
17
16
- go get -u github.com/mattn/goveralls
18
- - go get -u golang.org/x/tools/cmd/cover
19
17
20
18
before_script :
21
19
- go mod download
@@ -26,5 +24,5 @@ script:
26
24
27
25
after_success : |
28
26
[ $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
You can’t perform that action at this time.
0 commit comments