Skip to content

Merge pull request #75 from k2nr/bquorning/test-with-rails-7-2 #275

Merge pull request #75 from k2nr/bquorning/test-with-rails-7-2

Merge pull request #75 from k2nr/bquorning/test-with-rails-7-2 #275

Workflow file for this run

---
name: Tests
on:
pull_request:
push:
branches:
- master
workflow_dispatch:
jobs:
tests:
name: ActiveRecord ${{ matrix.activerecord-version }} / Ruby ${{ matrix.ruby-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
activerecord-version: ["6.0", "6.1", "7.0", "7.0.5", "7.1"]
ruby-version: ["2.7", "3.0", "3.1", "3.2", "3.3"]
include:
- {activerecord-version: "5.2", ruby-version: "2.7"}
- {activerecord-version: "7.2", ruby-version: "3.2"}
- {activerecord-version: "7.2", ruby-version: "3.3"}
steps:
- uses: actions/checkout@v4
- run: docker compose run test
env:
RUBY_VERSION: ${{ matrix.ruby-version }}
AR_VERSION: ${{ matrix.activerecord-version }}