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.
2 parents a48460f + f8fe117 commit 74a1b9aCopy full SHA for 74a1b9a
.circleci/config.yml
@@ -0,0 +1,47 @@
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
21
+ "ruby-2-6":
22
23
24
25
26
27
+ version: "2.6"
28
29
30
31
+ "ruby-2-7":
32
33
34
35
36
37
+ version: "2.7"
38
39
40
41
+workflows:
42
+ version: 2
43
+ build:
44
+ jobs:
45
+ - "ruby-2-5"
46
+ - "ruby-2-6"
47
+ - "ruby-2-7"
0 commit comments