diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..59cee7b --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,29 @@ +version: 2.1 +commands: + bundle_install_and_test: + steps: + - checkout + - run: bundle install + - run: bundle exec appraisal install + - run: bundle exec appraisal rake test + +jobs: + test-ruby-253: + docker: + - image: circleci/ruby:2.5.3 + steps: + - bundle_install_and_test + + test-ruby-263: + docker: + - image: circleci/ruby:2.6.3 + steps: + - bundle_install_and_test + +workflows: + rc: + jobs: + - test-ruby-253: + context: appfolio_test_context + - test-ruby-263: + context: appfolio_test_context