Skip to content

ci: Add Rails 7.2 and Ruby 3.3 to testing matrix #238

ci: Add Rails 7.2 and Ruby 3.3 to testing matrix

ci: Add Rails 7.2 and Ruby 3.3 to testing matrix #238

Workflow file for this run

name: CI Tests
on:
push:
branches: "main"
pull_request:
branches: "*"
jobs:
test:
name: "Ruby ${{ matrix.ruby }}, Rails ${{ matrix.gemfile }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
gemfile:
- "6.1"
- "7.0"
- "7.1"
- "7.2"
ruby:
- "3.0.7"
- "3.1.6"
- "3.2.5"
- "3.3.4"
exclude:
- gemfile: "7.2"
ruby: "3.0.7"
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.gemfile }}.gemfile
RAILS_ENV: test
steps:
- uses: actions/checkout@v2
- name: "Install Ruby ${{ matrix.ruby }}"
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: "Reset app database"
run: |
bundle exec rake dummy:db:drop
bundle exec rake dummy:db:setup
- name: "Run tests"
run: bundle exec rake