Skip to content

Commit da77c49

Browse files
committed
Setup step for checking coverage
1 parent 826837c commit da77c49

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/php.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,14 @@ jobs:
3636
# Docs: https://getcomposer.org/doc/articles/scripts.md
3737

3838
- name: Run test suite
39-
run: composer run-script test && composer run-script check-coverage
39+
run: composer run-script test
4040

4141
- name: Upload coverage reports to Codecov
4242
if: ${{ github.event_name == 'push' }}
4343
uses: codecov/codecov-action@v4.0.1
4444
with:
4545
token: ${{ secrets.CODECOV_TOKEN }}
4646
file: ./build/coverage-clover.txt
47+
48+
- name: Check coverage
49+
run: composer run-script check-coverage

0 commit comments

Comments
 (0)