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 3fa1871 commit 4519c26Copy full SHA for 4519c26
.github/workflows/check.yml
@@ -7,6 +7,10 @@ jobs:
7
# pull_request: run only when the PR is submitted from a forked repository, not within this repository.
8
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
9
strategy:
10
+ matrix:
11
+ jruby_version:
12
+ - 9.3.10.0
13
+ - 9.4.2.0
14
fail-fast: false
15
steps:
16
- uses: actions/checkout@v3
@@ -17,7 +21,7 @@ jobs:
17
21
distribution: "temurin"
18
22
- uses: ruby/setup-ruby@v1
19
23
with:
20
- ruby-version: 'jruby-9.3.10.0'
24
+ ruby-version: 'jruby-${{ matrix.jruby_version }}'
25
bundler-cache: true
26
- name: show ruby version
27
run: ruby -v
0 commit comments