hybridgroup.gobot/.travis.yml

20 lines
520 B
YAML
Raw Normal View History

2013-12-03 10:08:55 +08:00
language: go
go:
- 1.2
- release
- tip
install:
2013-12-03 17:01:26 +08:00
- go get -v . && go build -v .
2013-12-03 17:23:24 +08:00
- go get github.com/onsi/ginkgo
- go get github.com/onsi/gomega
- go get code.google.com/p/go.tools/cmd/cover
- go get github.com/mattn/goveralls
2013-12-03 10:08:55 +08:00
script:
- go test -covermode=count -coverprofile=profile.cov github.com/hybridgroup/gobot
- export PATH=$PATH:$HOME/gopath/bin/
- goveralls -coverprofile=profile.cov -service=travis-ci -repotoken=sFrR9ZmLP5FLc34lOaqir67RPzYOvFPUB
2014-01-21 15:22:41 +08:00
branches:
except:
- gobot.io
2014-04-18 02:20:49 +08:00
- /^gobot-.*$/