Skip to content

Commit f4ee330

Browse files
authored
Merge pull request #470 from yahonda/fix_test_yml
`matrix.ruby-version` should be an array
2 parents 5323d74 + 48ec074 commit f4ee330

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
ruby-version:
16-
- '2.5',
17-
- '2.6',
18-
- '2.7',
19-
- '3.0',
20-
- '3.1',
21-
- '3.2',
22-
- '3.3',
23-
- '3.4',
24-
- 'head'
16+
[
17+
'2.5',
18+
'2.6',
19+
'2.7',
20+
'3.0',
21+
'3.1',
22+
'3.2',
23+
'3.3',
24+
'3.4',
25+
'head'
26+
]
2527

2628
steps:
2729
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)