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.
2 parents d6b4e09 + 2c66c9a commit 625207bCopy full SHA for 625207b
.github/workflows/test.yml
@@ -32,9 +32,14 @@ jobs:
32
with:
33
ruby-version: ${{ matrix.ruby }}
34
bundler-cache: true # 'bundle install' and cache
35
- - name: Ensure new-enough RubyGems
+ - name: Ensure new-enough RubyGems for Ruby 2.6
36
run: gem update --system
37
- if: ${{ matrix.ruby == '2.6' || matrix.ruby == '2.5' }}
+ if: ${{ matrix.ruby == '2.6' }}
38
+ - name: Ensure new-enough RubyGems for Ruby 2.5
39
+ run: |
40
+ gem install rubygems-update -v "~> 3.3.26"
41
+ update_rubygems
42
+ if: ${{ matrix.ruby == '2.5' }}
43
- name: Run test
44
run: bundle exec rake
45
env:
0 commit comments