9fa5c9418c
* Migrate to using "remote themes" instead of forked content * Update to most recent mmistakes * Add docker-based testing * Create Makefile for test targets * Add travis-ci integration * Update badges to use shields.io * Replace splash page image (old one's attribution disappeared from unsplash.com)
16 lines
366 B
YAML
16 lines
366 B
YAML
---
|
|
env:
|
|
- IMAGE="jekyll/jekyll:3.8.5"
|
|
language: minimal
|
|
services:
|
|
- docker
|
|
before_install:
|
|
- docker pull $IMAGE
|
|
- docker create -t --name yadm-website --entrypoint test/travis-ci $IMAGE
|
|
- docker cp ./ yadm-website:/srv/jekyll
|
|
script:
|
|
- docker start yadm-website -a
|
|
branches: # necessary to force builds of gh-pages:
|
|
only:
|
|
- gh-pages
|
|
- "/.*/"
|