File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -2,23 +2,24 @@ name: CI
2
2
3
3
on :
4
4
push :
5
- branches : [ main, master ]
5
+ branches : [main, master]
6
6
pull_request :
7
+
7
8
jobs :
8
9
test :
9
10
runs-on : ubuntu-22.04
10
11
strategy :
11
12
fail-fast : false
12
13
matrix :
13
14
include :
14
- # ---- Ruby ≤ 2.2 need Bundler 1.17.x ------------------------
15
+ # Ruby ≤ 2.2 need Bundler 1.17.x
15
16
- ruby : " 2.0.0-p648"
16
17
bundler : " 1.17.3"
17
- - ruby : " 2.1.10 "
18
+ - ruby : " 2.1.9 "
18
19
bundler : " 1.17.3"
19
20
- ruby : " 2.2.10"
20
21
bundler : " 1.17.3"
21
- # ---- Normal modern combo -----------------------------------
22
+ # Modern versions
22
23
- ruby : " 2.3.8"
23
24
- ruby : " 2.4.10"
24
25
- ruby : " 2.5.9"
28
29
- ruby : " 3.1.4"
29
30
- ruby : " 3.2.3"
30
31
- ruby : " 3.3.0"
32
+
31
33
steps :
32
34
- uses : actions/checkout@v4
33
35
36
38
with :
37
39
ruby-version : ${{ matrix.ruby }}
38
40
bundler : ${{ matrix.bundler || 'latest' }}
39
- bundler-cache : true # caches Gem/ bundler dir
41
+ bundler-cache : true
40
42
41
- # For 2.0–2.2, force-install bundler 1.17 (setup-ruby can’t)
42
43
- name : Install Bundler 1.x on very old Rubies
43
44
if : matrix.bundler
44
45
run : gem install bundler -v "$BUNDLER_VERSION"
You can’t perform that action at this time.
0 commit comments