We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d17704 commit 5ed0302Copy full SHA for 5ed0302
.circleci/config.yml
@@ -0,0 +1,43 @@
1
+version: 2.1
2
+
3
+workflows:
4
+ ruby-tests:
5
+ jobs:
6
+ - unit-tests:
7
+ name: ruby24
8
+ version: "2.4.6"
9
10
+ name: ruby25
11
+ version: "2.5.5"
12
+ requires:
13
+ - ruby24
14
15
+ name: ruby27
16
+ version: "2.7.5"
17
18
+ - ruby25
19
20
+ name: ruby30
21
+ version: "3.0.0"
22
23
+ - ruby27
24
25
+jobs:
26
+ unit-tests:
27
+ parameters:
28
+ version:
29
+ type: string
30
+ docker:
31
+ - image: cimg/ruby:<< parameters.version >>
32
+ steps:
33
+ - checkout
34
+ - run:
35
+ name: Versions
36
+ command: |
37
+ echo "ruby: $(ruby --version)"
38
39
+ name: Install dependencies
40
+ command: bundle install
41
42
+ name: Run tests
43
+ command: bundle exec rspec
.travis.yml
0 commit comments