Skip to content

Add Ruby 3.3/3.4 CI

Add Ruby 3.3/3.4 CI #6

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
Test:
strategy:
fail-fast: false
matrix:
os: [ 'windows-latest' ]
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Test
run: bundle exec rake test