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 8f3974d commit 3902d77Copy full SHA for 3902d77
.github/workflows/test.yml
@@ -27,7 +27,9 @@ jobs:
27
gem uninstall bundler -a -x || true
28
- name: Install Bundler
29
run: |
30
- if [[ "${{ matrix.ruby-version }}" == "2.6" || "${{ matrix.ruby-version }}" == "2.7" ]]; then
+ if [[ "${{ matrix.ruby-version }}" == "2.5" ]]; then
31
+ gem install bundler -v "~> 2.3.27"
32
+ elif [[ "${{ matrix.ruby-version }}" == "2.6" || "${{ matrix.ruby-version }}" == "2.7" ]]; then
33
gem install bundler -v "~> 2.4.0"
34
else
35
gem install bundler
0 commit comments