We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a48460f commit 9dd63c8Copy full SHA for 9dd63c8
.circleci/config.yml
@@ -0,0 +1,45 @@
1
+version: 2.1
2
+orbs:
3
+ ruby: circleci/[email protected]
4
+references:
5
+ unit: &unit
6
+ run:
7
+ name: Run test suite
8
+ command: bundle exec rspec spec/
9
+
10
+jobs:
11
+ - "ruby-2.5"
12
+ docker:
13
+ - image: 'cimg/base:stable'
14
+ steps:
15
+ - checkout
16
+ - ruby/install:
17
+ version: "2.5"
18
+ - ruby/install-deps
19
+ - <<: *unit
20
+ - "ruby-2.6"
21
22
23
24
25
26
+ version: "2.6"
27
28
29
+ - "ruby-2.7"
30
31
32
33
34
35
+ version: "2.7"
36
37
38
39
+workflows:
40
+ version: 2
41
+ build:
42
+ jobs:
43
44
45
0 commit comments