1
0
Fork 0
mirror of synced 2024-06-27 09:01:10 -04:00
yadm/.travis.yml
Tim Byrne 9fa5c9418c
Refactor website (#146)
* 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)
2019-03-20 01:45:26 -05:00

17 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
- "/.*/"