File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 12
12
jobs :
13
13
build :
14
14
runs-on : ubuntu-latest
15
+ strategy :
16
+ matrix :
17
+ ruby : ['3.3', '3.4']
15
18
steps :
16
19
- uses : actions/checkout@v4
17
20
- uses : ruby/setup-ruby@v1
18
21
with :
19
- ruby-version : 3.3
22
+ ruby-version : ${{ matrix.ruby }}
20
23
- name : Install Dependencies
21
24
run : |
22
25
gem install test-unit
Original file line number Diff line number Diff line change 23
23
language :
24
24
- ruby
25
25
- c
26
+ ruby : ['3.3', '3.4']
26
27
steps :
27
28
- name : " Checkout repository"
28
29
uses : actions/checkout@v4
36
37
uses : github/codeql-action/analyze@v3
37
38
- uses : ruby/setup-ruby@v1
38
39
with :
39
- ruby-version : ' 3.3 '
40
+ ruby-version : ${{ matrix.ruby }}
40
41
bundler-cache : true
41
42
- name : " Run rufo code formatting checks"
42
43
run : |
You can’t perform that action at this time.
0 commit comments