mirror of https://github.com/ethereum/go-ethereum
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.
18 lines
468 B
18 lines
468 B
language: ruby
|
|
rvm:
|
|
- 2.5.3
|
|
|
|
before_script:
|
|
- gem install html-proofer
|
|
|
|
# Assume bundler is being used, therefore
|
|
# the `install` step will run `bundle install` by default.
|
|
script:
|
|
- bundle exec jekyll build
|
|
- bundle exec htmlproofer ./_site --assume-extension --allow-hash-href --empty-alt-ignore
|
|
|
|
env:
|
|
global:
|
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
|
|
|
|
cache: bundler # caching bundler gem packages will speed up build |