Skip to content

Commit

Permalink
Update circle.yml to version 2 syntax
Browse files Browse the repository at this point in the history
- Add jobs for ruby 2.3 and 2.4
  • Loading branch information
mtchavez committed Apr 25, 2017
1 parent 98dc477 commit 9470461
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
machine:
ruby:
version: 2.2.3
version: 2
jobs:
build:
docker:
- image: ruby:2.4
steps:
- checkout
- run: bundle install
- run: bundle exec rake
working_directory: ~/app
build_ruby2_3:
docker:
- image: ruby:2.3
steps:
- checkout
- run: bundle install
- run: bundle exec rake
working_directory: ~/app

0 comments on commit 9470461

Please sign in to comment.