12 lines
389 B
YAML
12 lines
389 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.4
|
|
install:
|
|
- go get golang.org/x/tools/cmd/cover github.com/mattn/goveralls github.com/modocache/gover
|
|
|
|
script:
|
|
- go list -f '{{if len .TestGoFiles}}"go test -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs sh -c
|
|
- gover
|
|
- goveralls -coverprofile=gover.coverprofile -service=travis-ci -repotoken W04Y4p452CDeI9gcsC8t5y217uHnUDFCb
|