14 lines
451 B
YAML
14 lines
451 B
YAML
language: ruby
|
|
cache: bundler
|
|
rvm:
|
|
- 2.2.5
|
|
|
|
#before_script:
|
|
# - chmod +x ./script/cibuild # or do this locally and commit
|
|
|
|
# Assume bundler is being used, therefore
|
|
# the `install` step will run `bundle install` by default.
|
|
script: bundle exec jekyll build
|
|
# http://stackoverflow.com/questions/28611513/travis-build-failing-on-jekyll-project-cannot-find-jekyll
|
|
# for html5proof ./script/cibuild && jekyll build && htmlproofer ./_site
|
|
sudo: required
|