Skip to content

chore: update rubocop config #13

chore: update rubocop config

chore: update rubocop config #13

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rails: ['6.0', '6.1', '7.0', '7.1']
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3', head]
name: Rails ${{ matrix.rails }} on Ruby ${{ matrix.ruby }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Ruby
env:
RAILS_VERSION: ${{ matrix.rails }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
env:
RAILS_VERSION: ${{ matrix.rails }}
run: bundle exec rake