Skip to content

CHANGED: Update supported Rails version to v7.2 (#87) #146

CHANGED: Update supported Rails version to v7.2 (#87)

CHANGED: Update supported Rails version to v7.2 (#87) #146

Workflow file for this run

---
name: CI
on:
- push
- pull_request
jobs:
rspec:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
ruby:
- '3.1'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Bundle
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run tests
env:
DEVISE_ORM: active_record
run: rake test