Skip to content

Add ruby-3.3 to ci (#317) #160

Add ruby-3.3 to ci (#317)

Add ruby-3.3 to ci (#317) #160

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest, macos-latest ]
ruby: [ 2.6, 2.7, "3.0", 3.1, 3.2 , 3.3] # "x.0" to workaround: https://github.com/ruby/setup-ruby/issues/252
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Test
run: |
bundle exec rspec ./spec