Skip to content

Commit

Permalink
Merge pull request #528 from bquorning/circle-ci
Browse files Browse the repository at this point in the history
Use Circle CI instead of Travis
  • Loading branch information
bquorning committed Jan 11, 2018
2 parents beee3e0 + 5fe79bd commit 0a42af9
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 0a42af9

Please sign in to comment.