Skip to content

Commit 57c963d

Browse files
authored
Merge pull request #8 from rubocop-hq/circleci
Build on CircleCI
2 parents 984d874 + 0215933 commit 57c963d

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-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

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![CircleCI status](https://circleci.com/gh/rubocop-hq/rubocop-sequel.svg?style=svg)](https://circleci.com/gh/rubocop-hq/rubocop-sequel)
2+
13
# RuboCop Sequel
24

35
Code style checking for [Sequel](https://sequel.jeremyevans.net/).

0 commit comments

Comments
 (0)