Skip to content

Commit 1e70302

Browse files
committed
ci: Use "latest" Bundler with Ruby "head"
Prevents picking up of the Gemfile's v2.4.22 which is no longer compatible with Ruby 4.
1 parent 2c97efd commit 1e70302

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", "head"]
25+
include:
26+
- ruby: "head"
27+
bundler: "latest"
2528
env:
2629
DEBUG: "true"
2730
steps:
@@ -32,6 +35,7 @@ jobs:
3235
uses: ruby/setup-ruby@v1
3336
with:
3437
ruby-version: ${{ matrix.ruby }}
38+
bundler: ${{ matrix.bundler || 'default' }}
3539
bundler-cache: true
3640
- name: Run tests
3741
run: bundle exec rake

0 commit comments

Comments
 (0)