Skip to content

Commit 68cc6fe

Browse files
authored
CI: Exclude Ruby 2.4 and 2.5 on macOS
1 parent 15f6135 commit 68cc6fe

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,24 @@ jobs:
2525
- macos-latest
2626
- windows-latest
2727
ruby:
28-
- 3.4
29-
- 3.3
30-
- 3.2
31-
- 3.1
32-
- 3.0
33-
- 2.7
34-
- 2.6
35-
- 2.5
36-
- 2.4
28+
- "3.4"
29+
- "3.3"
30+
- "3.2"
31+
- "3.1"
32+
- "3.0"
33+
- "2.7"
34+
- "2.6"
35+
- "2.5"
36+
- "2.4"
3737
- debug
3838
include:
3939
- { os: windows-latest , ruby: mingw }
4040
- { os: windows-latest , ruby: mswin }
4141
exclude:
42-
- { os: windows-latest , ruby: 3.0 }
42+
- { os: windows-latest , ruby: "3.0" }
4343
- { os: windows-latest , ruby: debug }
44+
- { os: macos-latest , ruby: "2.5" }
45+
- { os: macos-latest , ruby: "2.4" }
4446

4547
steps:
4648
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)