Skip to content

Commit

Permalink
fix: GA CI
Browse files Browse the repository at this point in the history
  • Loading branch information
adzap committed Dec 3, 2024
1 parent 5bb587b commit db7813a
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,20 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", ruby-head, jruby-9.2, jruby-9.3, jruby-head]
ruby-version: [2.7, 3.0, 3.1, 3.2, 3.3, ruby-head, jruby-9.2, jruby-9.3, jruby-head]
channel: ['stable']

include:
- ruby: 'ruby-head'
channel: 'experimental'

- ruby: 'jruby-head'
channel: 'experimental'

continue-on-error: ${{ matrix.channel != 'stable' }}
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", ruby-head, jruby-9.2, jruby-9.3, jruby-head]

continue-on-error: ${{ endsWith(matrix.ruby-version, 'ruby-head') || matrix.ruby-version == 'jruby-head' }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # 'bundle install' and cache gems
ruby-version: ${{ matrix.ruby }}
ruby-version: ${{ matrix.ruby-version }}
- name: Run tests
run: bundle exec rspec

0 comments on commit db7813a

Please sign in to comment.