Run Railtie from the tests so that we can detect bugs inside Railtie #91
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ruby test | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Ruby ${{ matrix.ruby }} (${{ matrix.gemfile }}) | |
runs-on: ubuntu-20.04 | |
continue-on-error: ${{ matrix.gemfile == 'rails_head' }} | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile | |
BUNDLE_JOBS: 4 | |
BUNDLE_RETRY: 3 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- "2.7" | |
- "3.0" | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
gemfile: | |
- "rails_6_1" | |
- "rails_7_0" | |
- "rails_7_1" | |
- "rails_head" | |
exclude: | |
- ruby: 2.7 | |
gemfile: rails_head | |
- ruby: '3.0' | |
gemfile: rails_head | |
include: | |
- ruby: 2.2 | |
gemfile: rails_5_0 | |
- ruby: 2.2 | |
gemfile: rails_5_1 | |
- ruby: 2.3 | |
gemfile: rails_5_0 | |
- ruby: 2.3 | |
gemfile: rails_5_1 | |
- ruby: 2.3 | |
gemfile: rails_5_2 | |
- ruby: 2.4 | |
gemfile: rails_5_0 | |
- ruby: 2.4 | |
gemfile: rails_5_1 | |
- ruby: 2.4 | |
gemfile: rails_5_2 | |
- ruby: 2.5 | |
gemfile: rails_5_0 | |
- ruby: 2.5 | |
gemfile: rails_5_1 | |
- ruby: 2.5 | |
gemfile: rails_5_2 | |
- ruby: 2.5 | |
gemfile: rails_6_0 | |
- ruby: 2.5 | |
gemfile: rails_6_1 | |
- ruby: 2.6 | |
gemfile: rails_5_0 | |
- ruby: 2.6 | |
gemfile: rails_5_1 | |
- ruby: 2.6 | |
gemfile: rails_5_2 | |
- ruby: 2.6 | |
gemfile: rails_6_0 | |
- ruby: 2.6 | |
gemfile: rails_6_1 | |
- ruby: 2.7 | |
gemfile: rails_6_0 | |
- ruby: '3.1' | |
gemfile: rails_head | |
- ruby: '3.2' | |
gemfile: rails_head | |
- ruby: head | |
gemfile: rails_head | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Ruby test | |
run: bundle exec rake |