Skip to content

Test on ruby 3.3

Test on ruby 3.3 #1268

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.2", "3.3"]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Configure bundler
run: bundle config set --local without 'production'
- name: Install ruby dependencies
run: |
bundle config path vendor/bundle
bundle install
- name: Install javascript dependencies
run: yarn install
- name: Run tests
run: bundle exec rake