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.
2 parents ae2f896 + eba77da commit 9bcaa07Copy full SHA for 9bcaa07
.github/workflows/phpunit-sqlite.yml
@@ -202,6 +202,10 @@ jobs:
202
echo 'Neither PHPUnit nor PHPUnit integration tests are specified in composer.json scripts'
203
exit 1
204
205
+ - name: Set xdebug_mode output
206
+ id: set-xdebug-mode
207
+ run: echo "xdebug_mode=${{ matrix.xdebug_mode }}" >> $GITHUB_OUTPUT
208
+
209
summary:
210
permissions:
211
contents: none
@@ -217,7 +221,7 @@ jobs:
217
221
run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-sqlite.result != 'success' }}; then exit 1; fi
218
222
219
223
finish-coverage:
220
- if: ${{ matrix.xdebug_mode == 'coverage' }}
224
+ if: ${{ needs.phpunit-sqlite.outputs.xdebug_mode == 'coverage' }}
225
needs: phpunit-sqlite
226
runs-on: ubuntu-latest
227
steps:
0 commit comments