We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f993b8 commit 07d7fa1Copy full SHA for 07d7fa1
1 file changed
.github/workflows/test.yml
@@ -22,9 +22,13 @@ jobs:
22
with:
23
ruby-version: ${{ matrix.ruby }}
24
- name: Install
25
- run: bundle install
+ id: bundle
26
+ run: |
27
+ bundle install
28
+ echo "::set-output name=exec::bundle exec"
29
+ if: "matrix.ruby <= '2.1'"
30
- name: Run test
- run: bundle exec rake test
31
+ run: ${{steps.bundle.outputs.exec}} rake test
32
- id: build
33
run: |
34
rake build
0 commit comments