aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 35eec4b45942f4f0cb9e681631be385a900533ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: ruby
rvm:
- 2.3.3
addons:
  apt:
    packages:
    - libcurl4-openssl-dev # Required to avoid TLS errors

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