11 lines
211 B
YAML
11 lines
211 B
YAML
|
language: go
|
||
|
go:
|
||
|
- 1.10.x
|
||
|
- 1.11.x
|
||
|
- tip
|
||
|
before_install:
|
||
|
- go get github.com/mattn/goveralls
|
||
|
script:
|
||
|
- go test -v -coverprofile=coverage.out
|
||
|
- goveralls -service=travis-ci -coverprofile=coverage.out
|