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 93ec1aa commit 28060dfCopy full SHA for 28060df
.github/workflows/ci.yml
@@ -31,13 +31,13 @@ jobs:
31
ruby-version: ${{ matrix.ruby }}
32
bundler-cache: true
33
- run: bundle exec standardrb
34
- - name: Run tests with coverage
+ - name: Run tests
35
env:
36
- COVERAGE: 1
37
- TEST_NODE_PARITY: 1
+ COVERAGE: ${{ matrix.ruby == '3.3' && '1' || '0' }}
+ TEST_NODE_PARITY: ${{ matrix.ruby == '3.3' && '1' || '0' }}
38
run: bundle exec rake test
39
- name: Upload coverage to Codecov
40
- if: matrix.ruby == 3.3
+ if: matrix.ruby == '3.3'
41
uses: codecov/codecov-action@v5
42
with:
43
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments