2013-07-20 16:02:10 +00:00
|
|
|
language: go
|
2015-06-11 05:27:57 +00:00
|
|
|
sudo: false
|
2017-08-03 19:07:56 +00:00
|
|
|
dist: trusty
|
2017-08-03 19:38:19 +00:00
|
|
|
osx_image: xcode8.3
|
2018-10-19 01:00:02 +00:00
|
|
|
go: 1.11.x
|
2017-08-03 19:38:19 +00:00
|
|
|
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
2015-06-11 05:27:57 +00:00
|
|
|
|
2016-06-16 15:47:19 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- node_modules
|
|
|
|
|
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
|
2017-04-24 17:39:43 +00:00
|
|
|
- go get golang.org/x/tools/cmd/goimports
|
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
|