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 727236e commit 0f48d83Copy full SHA for 0f48d83
.github/workflows/php.yml
@@ -177,9 +177,11 @@ jobs:
177
178
- name: Code Coverage
179
uses: codecov/codecov-action@v4
180
+ # only generate coverage against the latest PHP version
181
+ if: ${{ matrix.php-version == '8.3' }}
182
with:
183
token: ${{ secrets.CODECOV_TOKEN }}
184
directory: src/${{ matrix.project }}
185
files: ./coverage.clover
- flags: ${{ matrix.project }}:${{ matrix.php-version }}
186
+ flags: ${{ matrix.project }}
187
verbose: false
0 commit comments