From ca823c708272780b979f251921a567fe2b7e372a Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Mon, 6 Apr 2020 14:09:30 -0400 Subject: [PATCH] Try build with Travis --- .travis.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a83cccb --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +--- +language: ruby +env: + - JEKYLL_ENV=production +before_install: + - sudo apt-get install python-pip -y + - sudo pip install docutils pygments +before_script: + - git clone https://github.com/gryf/jekyll-rst _plugins/jekyll-rst +install: + - bundle install +script: bundle exec jekyll build +deploy: + provider: pages + github_token: $GITHUB_TOKEN + skip_cleanup: true + local_dir: _site + target_branch: master + on: + branch: source + +