We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4448d5f commit cfa1568Copy full SHA for cfa1568
.github/workflows/test.yml
@@ -3,7 +3,14 @@ on:
3
- push
4
- pull_request
5
jobs:
6
+ ruby-versions:
7
+ uses: ruby/actions/.github/workflows/ruby_versions.yml@master
8
+ with:
9
+ engine: cruby-jruby
10
+ min_version: 2.5
11
+
12
inplace:
13
+ needs: ruby-versions
14
name: ${{ matrix.ruby-version }} on ${{ matrix.runs-on }}
15
runs-on: ${{ matrix.runs-on }}
16
strategy:
@@ -13,14 +20,7 @@ jobs:
20
- ubuntu-latest
21
- macos-latest
22
- windows-latest
- ruby-version:
17
- - "2.5"
18
- - "2.6"
19
- - "2.7"
- - "3.0"
- - "3.1"
- - "3.2"
23
- - jruby
+ ruby-version: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
24
# include:
25
# - runs-on: ubuntu-latest
26
# ruby-version: truffleruby
0 commit comments