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 061f33b commit 852949dCopy full SHA for 852949d
.github/workflows/ruby.yml
@@ -37,17 +37,10 @@ jobs:
37
- uses: actions/checkout@v2
38
39
- uses: ruby/setup-ruby@v1
40
- if: matrix.ruby >= '2.6'
41
- with:
42
- ruby-version: ${{ matrix.ruby }}
43
- bundler-cache: true
44
- rubygems: latest
45
-
46
- - uses: ruby/setup-ruby@v1
47
- if: matrix.ruby < '2.6' # Skip updating RubyGems on old rubies
48
with:
49
ruby-version: ${{ matrix.ruby }}
50
bundler-cache: true
+ rubygems: ${{ matrix.ruby < '2.6' && 'default' || 'latest' }}
51
52
- name: Ruby specs
53
run: bundle exec rake test
0 commit comments