go-xmpp/.travis.yml

16 lines
380 B
YAML
Raw Normal View History

2016-01-06 09:24:16 -08:00
sudo: false
2016-01-06 08:59:44 -08:00
language: go
go:
2016-01-06 09:06:30 -08:00
- tip
2016-01-06 09:29:11 -08:00
before_install:
- go get github.com/axw/gocov/gocov
2016-01-06 09:06:30 -08:00
- go get github.com/mattn/goveralls
2016-01-06 09:29:11 -08:00
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
2016-01-06 09:06:30 -08:00
script:
2016-01-06 09:31:40 -08:00
- go test -v ./xmpp -covermode=count -coverprofile=coverage.out
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci