Skip to content

Commit

Permalink
Merge 7414e93 into baed6e8
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyshields committed Apr 6, 2021
2 parents baed6e8 + 7414e93 commit e7c3dc7
Showing 1 changed file with 40 additions and 21 deletions.
61 changes: 40 additions & 21 deletions .github/workflows/ci.yml
Expand Up @@ -9,32 +9,51 @@ on:
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental || false }}
strategy:
fail-fast: false
matrix:
ruby: [2.5, 2.6, 2.7, jruby, jruby-head, ruby-head]
ruby:
- '2.5'
- '2.6'
- '2.7'
- '3.0'
- 'jruby'
rails_version:
- '5.2.0'
- '6.0.0'
- '6.1.0.rc2'
- 'edge'
- '6.0'
- '6.1'
include:
#
# The past
#
# EOL Active Record
- ruby: 2.2
rails_version: '3.2.0'
- ruby: 2.1
rails_version: '4.1.0'
- ruby: 2.4
rails_version: '4.2.0'
- ruby: 2.4
rails_version: '5.0.0'
- ruby: 2.5
rails_version: '5.1.0'

continue-on-error: ${{ matrix.rails_version == 'edge' || endsWith(matrix.ruby, 'head') }}
# Older Rails
- ruby: '2.2'
rails_version: '3.2'
- ruby: '2.1'
rails_version: '4.1'
- ruby: '2.4'
rails_version: '4.2'
- ruby: '2.4'
rails_version: '5.0'
- ruby: '2.5'
rails_version: '5.1'
- ruby: '2.5'
rails_version: '5.2'
- ruby: 'jruby'
rails_version: '5.2'
# Experimental
- ruby: 'ruby-head'
rails_version: '6.1'
experimental: true
- ruby: 'jruby-head'
rails_version: '6.1'
experimental: true
- ruby: '2.7'
rails_version: 'edge'
experimental: true
- ruby: '3.0'
rails_version: 'edge'
experimental: true
- ruby: 'jruby'
rails_version: 'edge'
experimental: true

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit e7c3dc7

Please sign in to comment.