Skip to content

Bump actions/checkout from 4 to 5 #93

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #93

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
ruby-version: ['3.1', '3.2', '3.3', '3.4']
gemfile: ['rails_7.0', 'rails_7.1', 'rails_7.2', 'rails_8.0']
exclude:
- ruby-version: '3.1'
gemfile: 'rails_8.0'
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@v5
- 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