Skip to content

Add Ruby 3.2 and 3.3 #154

Add Ruby 3.2 and 3.3

Add Ruby 3.2 and 3.3 #154

Workflow file for this run

name: rspec
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.0", "3.1", "3.2", "3.3"]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run rspec tests
run: bundle exec rspec spec