@@ -105,6 +105,10 @@ jobs:
105
105
- name : Tests
106
106
run : make test-unit && make test-functional
107
107
108
+ - name : DEBUG
109
+ if : ${{ env.COVERAGE_TYPE == 'xdebug' }}
110
+ run : ls -ail build/coverage-*/
111
+
108
112
# See the reports at https://codecov.io/gh/yoanm/symfony-jsonrpc-http-server
109
113
- name : Upload unit tests coverage to codecov
110
114
if : ${{ env.COVERAGE_TYPE == 'xdebug' }}
@@ -117,6 +121,10 @@ jobs:
117
121
move_coverage_to_trash : false
118
122
verbose : ${{ runner.debug == '1' }}
119
123
124
+ - name : DEBUG
125
+ if : ${{ env.COVERAGE_TYPE == 'xdebug' }}
126
+ run : ls -ail build/coverage-*/
127
+
120
128
- name : Upload functional tests coverage to codecov
121
129
if : ${{ env.COVERAGE_TYPE == 'xdebug' }}
122
130
uses : codecov/codecov-action@v3
@@ -128,6 +136,10 @@ jobs:
128
136
move_coverage_to_trash : false
129
137
verbose : ${{ runner.debug == '1' }}
130
138
139
+ - name : DEBUG
140
+ if : ${{ env.COVERAGE_TYPE == 'xdebug' }}
141
+ run : ls -ail build/coverage-*/
142
+
131
143
- name : Upload coverages to Codacy
132
144
if : ${{ env.COVERAGE_TYPE == 'xdebug' }}
133
145
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