Skip to content

support ruby 3.3

support ruby 3.3 #60

Workflow file for this run

name: Test
on:
[ push, pull_request ]
jobs:
build:
name: RSpec test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2', '3.3' ]
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 # runs 'bundle install' and caches installed gems automatically
- name: Install dependencies
run: |
gem install bundler --no-document
bundle install
- name: Run test
run: bundle exec rspec spec