12 lines
254 B
YAML
12 lines
254 B
YAML
language: go
|
|
sudo: false
|
|
go:
|
|
- tip
|
|
before_install:
|
|
- go get github.com/mattn/goveralls
|
|
script:
|
|
- go test -v -cover -coverprofile=coverage.out
|
|
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci
|
|
branches:
|
|
only:
|
|
- master
|