Skip to content

Commit

Permalink
Circle CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
bquorning committed Jan 10, 2018
1 parent f0e6ed4 commit 7e230a5
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
version: 2

jobs:
ruby-2.1:
docker:
- image: circleci/ruby:2.1
steps:
- checkout
- run: bundle install
- run: rake
ruby-2.2:
docker:
- image: circleci/ruby:2.2
steps:
- checkout
- run: bundle install
- run: rake
ruby-2.3:
docker:
- image: circleci/ruby:2.3
steps:
- checkout
- run: bundle install
- run: rake
ruby-2.4:
docker:
- image: circleci/ruby:2.4
steps:
- checkout
- run: bundle install
- run: rake
ruby-2.5:
docker:
- image: circleci/ruby:2.5
steps:
- checkout
- run: bundle install
- run: rake
ruby-latest:
docker:
- image: circleci/ruby:latest
steps:
- checkout
- run: bundle install
- run: rake
jruby:
docker:
- image: circleci/jruby:9.1
steps:
- checkout
- run: bundle install
- run: rake

workflows:
version: 2
build:
jobs:
- ruby-2.1
- ruby-2.2
- ruby-2.3
- ruby-2.4
- ruby-2.5
- ruby-latest
- jruby

0 comments on commit 7e230a5

Please sign in to comment.