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 826837c commit da77c49Copy full SHA for da77c49
.github/workflows/php.yml
@@ -36,11 +36,14 @@ jobs:
36
# Docs: https://getcomposer.org/doc/articles/scripts.md
37
38
- name: Run test suite
39
- run: composer run-script test && composer run-script check-coverage
+ run: composer run-script test
40
41
- name: Upload coverage reports to Codecov
42
if: ${{ github.event_name == 'push' }}
43
uses: codecov/codecov-action@v4.0.1
44
with:
45
token: ${{ secrets.CODECOV_TOKEN }}
46
file: ./build/coverage-clover.txt
47
+
48
+ - name: Check coverage
49
+ run: composer run-script check-coverage
0 commit comments