mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
2933ae4e88
From un-tagged pervious version : https://github.com/urfave/cli/compare/d86a009f5e13...master
28 lines
417 B
YAML
28 lines
417 B
YAML
language: go
|
|
sudo: false
|
|
dist: trusty
|
|
osx_image: xcode8.3
|
|
go: 1.8.x
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
|
|
before_script:
|
|
- go get github.com/urfave/gfmrun/... || true
|
|
- go get golang.org/x/tools/cmd/goimports
|
|
- if [ ! -f node_modules/.bin/markdown-toc ] ; then
|
|
npm install markdown-toc ;
|
|
fi
|
|
|
|
script:
|
|
- ./runtests gen
|
|
- ./runtests vet
|
|
- ./runtests test
|
|
- ./runtests gfmrun
|
|
- ./runtests toc
|