Skip to content

Update activerecord requirement from >= 7.0, < 7.3 to >= 7.0, < 8.1 #70

Update activerecord requirement from >= 7.0, < 7.3 to >= 7.0, < 8.1

Update activerecord requirement from >= 7.0, < 7.3 to >= 7.0, < 8.1 #70

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test:
if: github.actor != 'dependabot[bot]' && github.event_name == 'push' ||
github.event_name == 'pull_request'
strategy:
matrix:
rails: ["7.0", "7.1", "7.2"]
ruby: ["3.1", "3.2", "3.3"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install toolchain
run: |
sudo apt-get update
sudo apt-get install \
build-essential \
libsqlite3-dev
- name: Install bundler
run: gem install bundler
- env:
RAILS_VERSION: ${{ matrix.rails }}
name: Install dependencies
run: bundle install
- env:
RAILS_VERSION: ${{ matrix.rails }}
name: Test
run: bundle exec rspec