Skip to content

Add cached key for active_record payloads #130

Add cached key for active_record payloads

Add cached key for active_record payloads #130

Workflow file for this run

name: Specs
on:
push:
branches: [ master, one-stable, two-stable ]
pull_request:
branches: [ master, one-stable, two-stable ]
jobs:
spec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '3.0', '3.1', '3.2', 'head' ]
rails: [ 'gemfiles/Gemfile.rails-6.0.x', 'gemfiles/Gemfile.rails-6.1.x', 'gemfiles/Gemfile.rails-7.0.x']
exclude: []
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
env:
BUNDLE_GEMFILE: ${{ matrix.rails }}
name: Ruby ${{ matrix.ruby }} ${{ matrix.rails }} specs
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake spec