Skip to content

Commit 865a99c

Browse files
committed
Tweak representation of build matrix
Ruby 3.0 version specification in YAML should be string `'3.0'` instead of float `3.0`. It will be `3` instead of the expected `3.0`.
1 parent 000bfb4 commit 865a99c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
strategy:
1212
matrix:
1313
ruby: [
14-
3.0,
15-
2.7,
16-
2.6,
17-
2.5,
14+
'3.0',
15+
'2.7',
16+
'2.6',
17+
'2.5',
1818
jruby,
1919
jruby-head
2020
]

0 commit comments

Comments
 (0)