Skip to content

Commit

Permalink
sk - CircleCI config
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Kapfer committed May 31, 2019
1 parent c16cee5 commit 1f18792
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1f18792

Please sign in to comment.