Skip to content

Commit 09eefd7

Browse files
committed
Switch from Travis CI to CircleCI
1 parent 984d874 commit 09eefd7

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.circleci/config.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
version: 2.1
2+
3+
steps: &steps
4+
steps:
5+
- checkout
6+
- run: bundle install
7+
- run: bundle exec rubocop --parallel
8+
- run: bundle exec rspec
9+
10+
jobs:
11+
ruby-2-3:
12+
docker:
13+
- image: circleci/ruby:2.3
14+
<<: *steps
15+
16+
ruby-2-4:
17+
docker:
18+
- image: circleci/ruby:2.4
19+
<<: *steps
20+
21+
ruby-2-5:
22+
docker:
23+
- image: circleci/ruby:2.5
24+
<<: *steps
25+
26+
workflows:
27+
build:
28+
jobs:
29+
- ruby-2-3
30+
- ruby-2-4
31+
- ruby-2-5

0 commit comments

Comments
 (0)