1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-03-17 20:47:57 +02:00
go-jira/.travis.yml

16 lines
499 B
YAML
Raw Normal View History

2015-09-03 12:27:49 +02:00
language: go
sudo: false
go:
2016-03-26 18:32:54 +01:00
- 1.4
- 1.5
2015-09-03 12:27:49 +02:00
- tip
before_install:
2016-03-27 12:19:55 +02:00
- if [[ $TRAVIS_GO_VERSION = 1.6 ]]; then go get github.com/axw/gocov/gocov; fi;
- if [[ $TRAVIS_GO_VERSION = 1.6 ]]; then go get github.com/mattn/goveralls; 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;
2015-09-03 12:27:49 +02:00
script:
2016-03-27 12:19:55 +02:00
- if [[ $TRAVIS_GO_VERSION = 1.6 ]]; then $HOME/gopath/bin/goveralls -service=travis-ci; fi;