We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caf0680 commit ce0f5e4Copy full SHA for ce0f5e4
.travis.yml
@@ -1,3 +1,11 @@
1
language: go
2
go:
3
- "1.10"
4
+install:
5
+ - export PATH=$PATH:$GOPATH/bin
6
+ - go get golang.org/x/tools/cmd/cover
7
+ - go get github.com/mattn/goveralls
8
+script:
9
+ - go test -v -covermode=count -coverprofile=coverage.out
10
+after_script:
11
+ - goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN
0 commit comments