urfave-cli/.travis.yml

36 lines
658 B
YAML
Raw Normal View History

2013-07-20 16:02:10 +00:00
language: go
sudo: false
dist: trusty
osx_image: xcode8.3
go:
- 1.10.x
- 1.11.x
- 1.12.x
os:
- linux
- osx
cache:
directories:
- node_modules
before_script:
2019-08-04 06:56:48 +00:00
- go get github.com/shurcooL/vfsgen || true
- go get github.com/shurcooL/httpfs/union || true
- go get github.com/urfave/gfmrun/... || true
- go get golang.org/x/tools/cmd/goimports
- if [ ! -f node_modules/.bin/markdown-toc ] ; then
2019-08-06 06:44:18 +00:00
npm install markdown-toc ;
fi
2014-07-14 17:48:52 +00:00
script:
2019-08-06 20:21:02 +00:00
- go run build.go generate
- go run build.go vet
- go run build.go test
- go run build.go gfmrun
- go run build.go toc
after_success:
- bash <(curl -s https://codecov.io/bash)