-
-
Notifications
You must be signed in to change notification settings - Fork 165
/
config.yml
58 lines (58 loc) · 1.08 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: 2.1
orbs:
ruby: circleci/ruby@1.0.4
jobs:
test_2_6:
docker:
- image: cimg/ruby:2.6.10
steps:
- checkout
- ruby/install-deps
- run:
name: Run tests
command: bundle exec rake
test_2_7:
docker:
- image: cimg/ruby:2.7.6
steps:
- checkout
- ruby/install-deps
- run:
name: Run tests
command: bundle exec rake
test_3_0:
docker:
- image: cimg/ruby:3.0.4
steps:
- checkout
- ruby/install-deps
- run:
name: Run tests
command: bundle exec rake
test_3_1:
docker:
- image: cimg/ruby:3.1.2
steps:
- checkout
- ruby/install-deps
- run:
name: Run tests
command: bundle exec rake
test_3_2:
docker:
- image: cimg/ruby:3.2.1
steps:
- checkout
- ruby/install-deps
- run:
name: Run tests
command: bundle exec rake
workflows:
version: 2
deploy:
jobs:
- test_2_6
- test_2_7
- test_3_0
- test_3_1
- test_3_2