Skip to content

Add support for Rails 7.2, drop support for Rails 6.1 #149

Add support for Rails 7.2, drop support for Rails 6.1

Add support for Rails 7.2, drop support for Rails 6.1 #149

Workflow file for this run

---
name: CI
on:
- push
- pull_request
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.3'
- '3.2'
- '3.1'
- 'head'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
env:
DEVISE_ORM: active_record
run: bundle exec rake test