github.com/mantzas/incata@v0.3.0/.travis.yml (about) 1 language: go 2 go: 3 - 1.6 4 - tip 5 before_script: 6 - go get -v github.com/onsi/ginkgo/ginkgo 7 - go get -v github.com/onsi/gomega 8 - go get golang.org/x/tools/cmd/cover 9 - go get github.com/mattn/goveralls 10 script: ginkgo -r --randomizeAllSpecs --randomizeSuites --failOnPending --cover --trace --race --compilers=2 11 after_success: 12 - $HOME/gopath/bin/goveralls -covermode=count -coverprofile=incata.coverprofile -service=travis-ci 13 14