Skip to content

Commit

Permalink
Add Ruby 3.3 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ima1zumi committed Jan 2, 2024
1 parent 8937279 commit 0e4886e
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 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 @@ -65,7 +72,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruby: [ 'head', '3.2' ]
ruby: [ 'head' ]
os: [ ubuntu-latest ]
timeout-minutes: 30
steps:
Expand Down Expand Up @@ -107,13 +114,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 0e4886e

Please sign in to comment.