Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
417 B
27 lines
417 B
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
|
|
|