lbcd/.travis.yml

14 lines
335 B
YAML
Raw Normal View History

language: go
go:
- release
- tip
install:
- go get -d -t -v ./...
- go get -v golang.org/x/tools/cmd/cover
script:
- go test -v -covermode=count -coverprofile=profile.cov
after_success:
- go get -v github.com/mattn/goveralls
- export PATH=$PATH:$HOME/gopath/bin
- goveralls -coverprofile=profile.cov -service=travis-ci