Skip to content

Commit

Permalink
[changelog skip] Move from travis to circle
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Aug 27, 2020
1 parent a42bdef commit b704cdf
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 20 deletions.
43 changes: 43 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
version: 2
orbs:
ruby: circleci/ruby@1.1.1

references:
unit: &unit
run:
name: Run test suite
command: bundle exec rake test

jobs:
"ruby-2.2":
docker:
- image: circleci/ruby:2.1
steps:
- ruby/install-deps
- checkout
- <<: *unit
"ruby-2.7":
docker:
- image: circleci/ruby:2.7
steps:
- ruby/install-deps
- checkout
- <<: *unit

"ruby-2.7-mac":
macos:
xcode: "11.3.0"
steps:
- ruby/install-deps
- ruby/install:
version: '2.7'
- checkout
- <<: *unit

workflows:
version: 2
build:
jobs:
- "ruby-2.5"
- "ruby-2.6"
- "ruby-2.7"
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

0 comments on commit b704cdf

Please sign in to comment.