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 4fb5b18 commit 65d7e23Copy full SHA for 65d7e23
.github/workflows/test.yml
@@ -14,6 +14,7 @@ jobs:
14
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login != github.event.pull_request.base.repo.owner.login
15
name: 'Ruby ${{ matrix.ruby }}'
16
runs-on: ubuntu-latest
17
+ continue-on-error: ${{ matrix.optional || false }}
18
strategy:
19
fail-fast: false
20
matrix:
@@ -22,8 +23,13 @@ jobs:
22
23
- '3.0'
24
- '3.1'
25
- '3.2'
26
+ - '3.3'
27
+ - '3.4'
28
+ include:
29
+ - ruby: head
30
+ - optional: true
31
steps:
- - uses: actions/checkout@v3
32
+ - uses: actions/checkout@v4
33
- uses: ruby/setup-ruby@v1
34
with:
35
ruby-version: ${{ matrix.ruby }}
0 commit comments