Skip to content

Commit

Permalink
Add Ruby 3.3 to CI (#620)
Browse files Browse the repository at this point in the history
  • Loading branch information
ima1zumi authored Jan 4, 2024
1 parent 90155fd commit 100cc16
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/reline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,21 @@ on:
- cron: "30 14 * * *"

jobs:
ruby-versions:
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
with:
engine: cruby
min_version: 2.6

reline:
needs: ruby-versions
name: >-
reline ${{ matrix.os }} ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
os: [ ubuntu-latest, macos-latest, windows-latest ]
ruby: [ 'head', '3.2', '3.1', '3.0', '2.7', '2.6' ]
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -60,13 +67,16 @@ jobs:
run: bundle exec rake ci-test

irb:
needs: ruby-versions
name: >-
irb ${{ matrix.ruby }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruby: [ 'head', '3.2' ]
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
os: [ ubuntu-latest ]
exclude:
- ruby: 2.6
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -107,13 +117,14 @@ jobs:
bundle exec rake test_yamatanooroti
vterm-yamatanooroti:
needs: ruby-versions
name: >-
vterm-yamatanooroti ${{ matrix.os }} ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
os: [ ubuntu-latest ]
ruby: [ 'head', '3.2', '3.1', '3.0', '2.7', '2.6' ]
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 100cc16

Please sign in to comment.