rails 7.2+ support #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Active Record ${{ matrix.activerecord }} on ruby ${{ matrix.ruby }} (compat=${{ matrix.compat }}) | |
strategy: | |
matrix: | |
activerecord: ["~> 6.1", "~> 7.0"] | |
compat: ["0", "1"] | |
ruby: ["3.0", "3.1", "3.2"] | |
env: | |
AR: ${{ matrix.activerecord }} | |
COMPAT: ${{ matrix.compat }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install packages | |
run: sudo apt-get install libsqlite3-dev | |
- name: Install bundler | |
run: gem install bundler | |
- name: Install dependencies | |
run: bundle install | |
- name: Test | |
run: bundle exec rspec |