12 lines
397 B
YAML
12 lines
397 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.4
|
|
install:
|
|
- go get code.google.com/p/go.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
|