Skip to content

Merge pull request #315 from thoughtbot/dependabot/bundler/appraisal-… #48

Merge pull request #315 from thoughtbot/dependabot/bundler/appraisal-…

Merge pull request #315 from thoughtbot/dependabot/bundler/appraisal-… #48

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
ruby-version: ['3.0', '3.1', '3.2', '3.3']
gemfile: ['rails_6.0','rails_6.1','rails_7.0', 'rails_7.1']
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
name: Specs - Ruby ${{ matrix.ruby-version }} with ${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }} with ${{ matrix.gemfile }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
rubygems: default
- name: Run specs
run: bundle exec rake spec