From 9786bcea8672d0de124ad6ddf3a13487e70a9c71 Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Fri, 11 Jan 2019 21:39:20 +0100 Subject: [PATCH] Enable Travis CI This patch enables Travis CI which will build pull requests before they are merged so that merges will not break the build as easily anymore. --- .travis.yml | 5 +++++ Gemfile | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 .travis.yml create mode 100644 Gemfile diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..05eada2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: ruby +sudo: false +cache: bundler +script: + - bundle exec jekyll build diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..33d9d3b --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem 'github-pages', group: :jekyll_plugins