We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f687a09 commit 47ca9b6Copy full SHA for 47ca9b6
.github/workflows/test.yml
@@ -352,6 +352,18 @@ jobs:
352
bundler: 2.2.3
353
- run: bundle --version | grep -F "Bundler version 2.2.3"
354
355
+ # https://github.com/ruby/setup-ruby/issues/845
356
+ testOlderBundlerVersion:
357
+ name: "Test with an older Bundler version than the one of the default gem"
358
+ runs-on: ubuntu-latest
359
+ steps:
360
+ - uses: actions/checkout@v6
361
+ - uses: ./
362
+ with:
363
+ ruby-version: '4.0'
364
+ bundler: 2.7.2
365
+ - run: bundle --version | grep -F "Bundler version 2.7.2"
366
+
367
testBundlerPre:
368
name: "Test with a Bundler pre/rc version"
369
runs-on: ubuntu-latest
0 commit comments