diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..4cc225c --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,21 @@ +# See: https://circleci.com/docs/2.0/configuration-reference +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 jekyll site + command: bundle exec jekyll build + + - run: + name: Print the Current Time + command: date