Skip to content

Bump actionpack from 7.2.1 to 7.2.1.1 #23

Bump actionpack from 7.2.1 to 7.2.1.1

Bump actionpack from 7.2.1 to 7.2.1.1 #23

Workflow file for this run

name: Rspec
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
gemfile: ['5.2', '6.0', '6.1', '7.0', '7.1']
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
exclude:
- gemfile: '5.2'
ruby: '3.0'
- gemfile: '5.2'
ruby: '3.1'
- gemfile: '5.2'
ruby: '3.2'
- gemfile: '5.2'
ruby: '3.3'
runs-on: ubuntu-latest
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rspec