21 lines
351 B
YAML
21 lines
351 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.13.x
|
||
|
- 1.14.x
|
||
|
- 1.15.x
|
||
|
- 1.16.x
|
||
|
- 1.x
|
||
|
- master
|
||
|
|
||
|
branches:
|
||
|
only:
|
||
|
- master
|
||
|
|
||
|
install:
|
||
|
- go get golang.org/x/tools/cmd/cover
|
||
|
- go get github.com/mattn/goveralls
|
||
|
|
||
|
script:
|
||
|
- go test -v -covermode=count -coverprofile=coverage.out
|
||
|
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN
|