Skip to content

Commit 786f935

Browse files
authored
Github Actions: Specific jruby versions (#669)
1 parent 93ef769 commit 786f935

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,16 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
ruby-version: ["3.4", "3.3", "3.2", "3.1", "jruby", "head"]
29+
ruby-version:
30+
[
31+
"3.4",
32+
"3.3",
33+
"3.2",
34+
"3.1",
35+
"jruby-10.0.0.1", # The latest JRuby release does not work with prism
36+
"jruby-head", # should be fixed in the 10.0.3.0 release.
37+
"head",
38+
]
3039
fail-fast: false
3140

3241
env:

0 commit comments

Comments
 (0)