aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 2579a6bd2ccd5c98a34da55d3ccc1e1596c43182 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: ruby
rvm:
- 2.3.3

script:
  - set -e # halt script on error
  - bundle exec jekyll build
  - bundle exec htmlproofer ./_site

env:
  global:
  - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer

sudo: false