Skip to content
This repository was archived by the owner on Jul 6, 2026. It is now read-only.

Merge pull request #5 from toptal/upgrade-activesupport #18

Merge pull request #5 from toptal/upgrade-activesupport

Merge pull request #5 from toptal/upgrade-activesupport #18

Workflow file for this run

name: RSpec
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ["3.3", "3.4", "4.0"]
rails-version-gemfile:
- activesupport_7_2.gemfile
- activesupport_8_0.gemfile
- activesupport_8_1.gemfile
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.rails-version-gemfile }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby-version }}
- name: Run tests
run: bundle exec rspec