github.com/symblcrowd/bloom@v2.0.5+incompatible/.travis.yml (about) 1 language: go 2 3 sudo: false 4 5 branches: 6 except: 7 - release 8 9 branches: 10 only: 11 - master 12 - develop 13 - travis 14 15 go: 16 - 1.8 17 - tip 18 19 matrix: 20 allow_failures: 21 - go: tip 22 23 before_install: 24 - if [ -n "$GH_USER" ]; then git config --global github.user ${GH_USER}; fi; 25 - if [ -n "$GH_TOKEN" ]; then git config --global github.token ${GH_TOKEN}; fi; 26 - go get github.com/mattn/goveralls 27 28 before_script: 29 - make deps 30 31 script: 32 - make qa 33 34 after_failure: 35 - cat ./target/test/report.xml 36 37 after_success: 38 - if [ "$TRAVIS_GO_VERSION" = "1.8" ]; then $HOME/gopath/bin/goveralls -covermode=count -coverprofile=target/report/coverage.out -service=travis-ci; fi;