2018-12-17 13:41:24 +00:00
|
|
|
language: go
|
|
|
|
before_install:
|
|
|
|
- go get github.com/mattn/goveralls
|
|
|
|
script:
|
2019-06-09 00:01:48 +00:00
|
|
|
- go test -v -covermode=count -coverprofile=profile.cov . ./buffer ./css ./html ./js ./json ./strconv ./svg ./xml
|
|
|
|
- goveralls -v -coverprofile=profile.cov -service travis-ci -repotoken $COVERALLS_TOKEN
|