Skip to content

Commit 1e30be5

Browse files
committed
DEBUG
1 parent d0e9b6d commit 1e30be5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/CI.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ jobs:
105105
- name: Tests
106106
run: make test-unit && make test-functional
107107

108+
- name: DEBUG
109+
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
110+
run: ls -ail build/coverage-*/
111+
108112
# See the reports at https://codecov.io/gh/yoanm/symfony-jsonrpc-http-server
109113
- name: Upload unit tests coverage to codecov
110114
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
@@ -117,6 +121,10 @@ jobs:
117121
move_coverage_to_trash: false
118122
verbose: ${{ runner.debug == '1' }}
119123

124+
- name: DEBUG
125+
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
126+
run: ls -ail build/coverage-*/
127+
120128
- name: Upload functional tests coverage to codecov
121129
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
122130
uses: codecov/codecov-action@v3
@@ -128,6 +136,10 @@ jobs:
128136
move_coverage_to_trash: false
129137
verbose: ${{ runner.debug == '1' }}
130138

139+
- name: DEBUG
140+
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
141+
run: ls -ail build/coverage-*/
142+
131143
- name: Upload coverages to Codacy
132144
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
133145
run: ${{ env.CODACY_BIN }} report -r build/coverage-phpunit/unit.clover -r build/coverage-behat/clover.xml -r build/coverage-phpunit/functional.clover -t ${{ secrets.CODACY_PROJECT_TOKEN }} --partial

0 commit comments

Comments
 (0)