Fix the CI for Rails main, v7.0, and v6.1 #183
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: CI | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: [ '2.7', '3.0', '3.1', '3.2', '3.3', 'head', 'truffleruby' ] | |
rails: [ '6.1', '7.0', '7.1', 'main' ] | |
exclude: | |
- ruby: '2.7' | |
rails: 'main' | |
- ruby: '3.0' | |
rails: 'main' | |
- ruby: '3.1' | |
rails: 'main' | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails }}.gemfile | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec rake test | |
continue-on-error: ${{ matrix.ruby == 'head' || matrix.ruby == 'truffleruby' || matrix.rails == 'main' }} | |
timeout-minutes: 3 |