Skip to content

Add support for Ruby 3.2 #31

Add support for Ruby 3.2

Add support for Ruby 3.2 #31

Workflow file for this run

name: Test & Lint
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.3', '3.2', '3.1', '3.0', '2.7']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Rubocop
run: rubocop
- name: Run tests
run: bundle exec rake