mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
fix: define return of job
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
parent
ae2f896655
commit
eba77da00e
1 changed files with 5 additions and 1 deletions
6
.github/workflows/phpunit-sqlite.yml
vendored
6
.github/workflows/phpunit-sqlite.yml
vendored
|
|
@ -202,6 +202,10 @@ jobs:
|
|||
echo 'Neither PHPUnit nor PHPUnit integration tests are specified in composer.json scripts'
|
||||
exit 1
|
||||
|
||||
- name: Set xdebug_mode output
|
||||
id: set-xdebug-mode
|
||||
run: echo "xdebug_mode=${{ matrix.xdebug_mode }}" >> $GITHUB_OUTPUT
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
|
|
@ -217,7 +221,7 @@ jobs:
|
|||
run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-sqlite.result != 'success' }}; then exit 1; fi
|
||||
|
||||
finish-coverage:
|
||||
if: ${{ matrix.xdebug_mode == 'coverage' }}
|
||||
if: ${{ needs.phpunit-sqlite.outputs.xdebug_mode == 'coverage' }}
|
||||
needs: phpunit-sqlite
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue