1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-02-09 13:36:58 +02:00

Merge pull request #2 from andygrunwald/travis-codecoverage-tip-onky

Run Code Coverage on Golang tip only
This commit is contained in:
Andy Grunwald 2016-03-27 12:30:12 +02:00
commit 4ab195bda0

View File

@ -8,9 +8,9 @@ go:
- tip - tip
before_install: before_install:
- go get github.com/axw/gocov/gocov - if [[ $TRAVIS_GO_VERSION = 1.6 ]]; then go get github.com/axw/gocov/gocov; fi;
- go get github.com/mattn/goveralls - if [[ $TRAVIS_GO_VERSION = 1.6 ]]; then go get github.com/mattn/goveralls; fi;
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi - if [[ $TRAVIS_GO_VERSION = 1.6 ]]; then if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi; fi;
script: script:
- $HOME/gopath/bin/goveralls -service=travis-ci - if [[ $TRAVIS_GO_VERSION = 1.6 ]]; then $HOME/gopath/bin/goveralls -service=travis-ci; fi;