Add files for Travis CI (#696)

Implement Travis CI.
This commit is contained in:
Samuel Shifterovich 2018-12-27 17:08:35 +01:00 committed by GitHub
parent 35a1419ab8
commit 541d45f82a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

11
.travis.yml Normal file
View File

@ -0,0 +1,11 @@
language: ruby
rvm:
- 2.4.1
# Assume bundler is being used, therefore
# the `install` step will run `bundle install` by default.
script: ./build.sh
sudo: false # route your build to the container-based infrastructure for a faster build
cache: bundler # caching bundler gem packages will speed up build

4
build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -e # halt script on error
bundle exec jekyll build