mirror of https://github.com/status-im/cabot.git
20 lines
368 B
YAML
20 lines
368 B
YAML
language: ruby
|
|
rvm:
|
|
- 2.2.6
|
|
|
|
install: gem install jekyll html-proofer
|
|
|
|
script:
|
|
- jekyll build
|
|
- htmlproofer ./_site
|
|
|
|
branches:
|
|
only:
|
|
- gh-pages # test the gh-pages branch
|
|
|
|
env:
|
|
global:
|
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
|
|
|
|
sudo: false # route your build to the container-based infrastructure for a faster build
|