2013-07-20 16:02:10 +00:00
|
|
|
language: go
|
2016-05-09 12:41:01 +00:00
|
|
|
|
2015-06-11 05:27:57 +00:00
|
|
|
sudo: false
|
|
|
|
|
2016-06-16 15:47:19 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- node_modules
|
|
|
|
|
2015-06-11 05:27:57 +00:00
|
|
|
go:
|
2016-07-23 21:52:19 +00:00
|
|
|
- 1.2.x
|
|
|
|
- 1.3.x
|
2016-07-23 22:16:45 +00:00
|
|
|
- 1.4.2
|
2016-07-23 21:52:19 +00:00
|
|
|
- 1.5.x
|
|
|
|
- 1.6.x
|
2016-10-21 08:42:30 +00:00
|
|
|
- 1.7.x
|
2016-05-09 12:41:01 +00:00
|
|
|
- master
|
2015-11-15 21:07:49 +00:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
2016-05-09 12:41:01 +00:00
|
|
|
- go: master
|
2016-05-21 12:46:18 +00:00
|
|
|
include:
|
2016-07-23 21:52:19 +00:00
|
|
|
- go: 1.6.x
|
2016-05-24 00:21:14 +00:00
|
|
|
os: osx
|
2016-10-21 08:42:30 +00:00
|
|
|
- go: 1.7.x
|
|
|
|
os: osx
|
2014-07-14 17:48:52 +00:00
|
|
|
|
2016-04-27 15:38:49 +00:00
|
|
|
before_script:
|
2016-08-22 19:26:33 +00:00
|
|
|
- go get github.com/urfave/gfmrun/... || true
|
2016-07-23 22:16:45 +00:00
|
|
|
- go get golang.org/x/tools/... || true
|
2016-06-16 15:47:19 +00:00
|
|
|
- if [ ! -f node_modules/.bin/markdown-toc ] ; then
|
|
|
|
npm install markdown-toc ;
|
|
|
|
fi
|
2016-04-27 15:38:49 +00:00
|
|
|
|
2014-07-14 17:48:52 +00:00
|
|
|
script:
|
2016-06-23 04:56:44 +00:00
|
|
|
- ./runtests gen
|
2016-05-09 12:58:20 +00:00
|
|
|
- ./runtests vet
|
|
|
|
- ./runtests test
|
2016-07-16 13:12:42 +00:00
|
|
|
- ./runtests gfmrun
|
2016-06-16 15:47:19 +00:00
|
|
|
- ./runtests toc
|