diff options
Diffstat (limited to 'vendor/gopkg.in/urfave/cli.v1/.travis.yml')
-rw-r--r-- | vendor/gopkg.in/urfave/cli.v1/.travis.yml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/vendor/gopkg.in/urfave/cli.v1/.travis.yml b/vendor/gopkg.in/urfave/cli.v1/.travis.yml new file mode 100644 index 000000000..273d017b4 --- /dev/null +++ b/vendor/gopkg.in/urfave/cli.v1/.travis.yml @@ -0,0 +1,40 @@ +language: go + +sudo: false + +cache: + directories: + - node_modules + +go: +- 1.2.2 +- 1.3.3 +- 1.4 +- 1.5.4 +- 1.6.2 +- master + +matrix: + allow_failures: + - go: master + include: + - go: 1.6.2 + os: osx + - go: 1.1.2 + install: go get -v . + before_script: echo skipping gfmxr on $TRAVIS_GO_VERSION + script: + - ./runtests vet + - ./runtests test + +before_script: +- go get github.com/urfave/gfmxr/... +- if [ ! -f node_modules/.bin/markdown-toc ] ; then + npm install markdown-toc ; + fi + +script: +- ./runtests vet +- ./runtests test +- ./runtests gfmxr +- ./runtests toc |