11 lines
286 B
YAML
11 lines
286 B
YAML
language: go
|
|
go:
|
|
- 1.13.x
|
|
env:
|
|
- GO111MODULE=on
|
|
before_install:
|
|
- go get github.com/mattn/goveralls
|
|
script:
|
|
- go test -covermode=count -coverprofile=profile.cov . ./buffer ./css ./html ./js ./json ./strconv ./svg ./xml
|
|
- goveralls -coverprofile=profile.cov -service travis-ci
|