mirror of
https://github.com/make-42/xyosc
synced 2025-01-18 18:57:10 +01:00
13 lines
246 B
YAML
13 lines
246 B
YAML
language: go
|
|
|
|
before_install:
|
|
- go get github.com/mattn/goveralls
|
|
|
|
go:
|
|
- "1.11.x"
|
|
- "1.10.x"
|
|
|
|
script:
|
|
- go test -cover -v -covermode=count -coverprofile=coverage.out
|
|
- $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci
|