Skip to content

Commit

Permalink
Rename experimental boolean to channel string
Browse files Browse the repository at this point in the history
Improves actions title readability
  • Loading branch information
tagliala committed May 28, 2023
1 parent d00e6bb commit a5fe27f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,29 @@ jobs:
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2']
gemfile: [ rails_7_0 ]
experimental: [false]
channel: ['stable']

include:
- gemfile: rails_7_0
ruby: head
experimental: true
channel: 'experimental'
- gemfile: rails_edge
ruby: '2.7'
experimental: true
channel: 'experimental'
- gemfile: rails_edge
ruby: '3.0'
experimental: true
channel: 'experimental'
- gemfile: rails_edge
ruby: '3.1'
experimental: true
channel: 'experimental'
- gemfile: rails_edge
ruby: '3.2'
experimental: true
channel: 'experimental'
- gemfile: rails_edge
ruby: head
experimental: true
channel: 'experimental'

continue-on-error: ${{ matrix.experimental }}
continue-on-error: ${{ matrix.channel != 'stable' }}

name: ${{ matrix.gemfile }}, ruby ${{ matrix.ruby }}
env:
Expand Down

0 comments on commit a5fe27f

Please sign in to comment.