mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-16 17:09:28 +01:00
23 lines
412 B
YAML
23 lines
412 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- openjdk-8-jre # install Java8 as required by vnu.jar
|
|
|
|
before_install:
|
|
- gem install github-pages #jekyll-theme-midnight
|
|
|
|
install:
|
|
- pip install html5validator
|
|
|
|
script:
|
|
- jekyll build --drafts --profile
|
|
- html5validator --root _site/ --also-check-css --blacklist r or ir
|
|
|
|
env:
|
|
global:
|
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|