Skip to content

Commit 036cf8d

Browse files
authored
Merge pull request #8904 from jrafanie/master_fix_code_coverage_ruby_3_0
Fix CI 'if' ruby-version check for 3.0
2 parents dce2af2 + 5620e32 commit 036cf8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
ruby-version:
15+
- '2.7'
1516
- '3.0'
1617
node-version:
1718
- 18
@@ -66,7 +67,7 @@ jobs:
6667
- name: Run tests
6768
run: bundle exec rake
6869
- name: Report code coverage
69-
if: "${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7' &&
70+
if: "${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0' &&
7071
matrix.test-suite == 'spec' }}"
7172
continue-on-error: true
7273
uses: paambaati/codeclimate-action@v5

0 commit comments

Comments
 (0)