Skip to content

Test against Ruby 3.4 #383

Test against Ruby 3.4

Test against Ruby 3.4 #383

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
name: Specs
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.1", "3.2", "3.3", "3.4"]
channel: ["stable"]
include:
- ruby-version: "head"
channel: "experimental"
continue-on-error: ${{ matrix.channel != 'stable' }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
rubygems: latest
- name: Run specs
run: bundle exec rake