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 cb1857e commit 985a6c3Copy full SHA for 985a6c3
1 file changed
.github/workflows/ci.yml
@@ -44,17 +44,10 @@ jobs:
44
- uses: actions/checkout@v3
45
- name: Set up Ruby ${{ matrix.ruby }}
46
uses: ruby/setup-ruby@v1
47
- if: matrix.ruby == '2.5'
48
with:
49
ruby-version: ${{ matrix.ruby }}
50
bundler-cache: true # 'bundle install' and cache
51
- - name: Set up Ruby ${{ matrix.ruby }}
52
- uses: ruby/setup-ruby@v1
53
- if: matrix.ruby != '2.5'
54
- with:
55
- ruby-version: ${{ matrix.ruby }}
56
- bundler-cache: true # 'bundle install' and cache
57
- rubygems: latest
+ rubygems: ${{ matrix.ruby == '2.5' && 'default' || 'latest' }}
58
- name: Copy config file
59
run: cp spec/support/sample.config.yml spec/support/config.yml
60
- name: Run tests
0 commit comments