go-xmpp/.travis.yml

15 lines
314 B
YAML
Raw Normal View History

2016-01-06 17:24:16 +00:00
sudo: false
2016-01-06 16:59:44 +00:00
language: go
go:
- 1.5
2016-01-06 17:06:30 +00:00
- tip
install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
2016-01-06 17:24:16 +00:00
- go test -v ./xmpp -covermode=count -coverprofile=coverage.out
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN