aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..bf232f9
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,18 @@
+
+# opt-in to Travis new infrastructure
+sudo: false
+
+language: ruby
+
+# for faster builds
+cache: bundler
+env: BUNDLE_PATH=bundle-vendor/bundle
+
+# we must override install, or Travis's default Gemfile support
+# will kick in and use `vendor`, ignoring our BUNDLE_PATH
+# declaration in `.bundle/config`
+install:
+- bundle install
+
+script:
+- bundle exec jekyll build \ No newline at end of file