Skip to content

chore: Update gemfiles and CI settings for newer Rails versions #55

chore: Update gemfiles and CI settings for newer Rails versions

chore: Update gemfiles and CI settings for newer Rails versions #55

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
gemfile:
- rails_7.1
- rails_7.0
- rails_6.1
- rails_6.0
runs-on: ubuntu-latest
env:
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 rake db:create db:schema:load test