diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..27c08548 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,20 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/ruby:2.4.1-node-browsers + + steps: + - checkout + + - run: + name: build dependencies + command: bundle install + + - run: + name: Build the jekll site + command: bundle exec jekll build + + - run: + name: Print the current time + command: date