mirror of
https://github.com/thegeeklab/drone-matrix.git
synced 2024-11-01 01:00:41 +00:00
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
|