Merge pull request #3259 from LibreSign/chore/use-full-command

chore: remove script and use full command
This commit is contained in:
Vitor Mattos 2024-07-01 19:10:52 -03:00 committed by GitHub
commit e951791b7a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -161,7 +161,7 @@ jobs:
# Only run if phpunit config file exists
if: steps.check_phpunit.outcome == 'success'
working-directory: apps/${{ env.APP_NAME }}
run: composer run test:unit -- --testsuite=${{ matrix.testsuite }}
run: php vendor/bin/phpunit --colors=always --testsuite=${{ matrix.testsuite }}
- name: Check PHPUnit integration script is defined
id: check_integration

View file

@ -161,7 +161,7 @@ jobs:
# Only run if phpunit config file exists
if: steps.check_phpunit.outcome == 'success'
working-directory: apps/${{ env.APP_NAME }}
run: composer run test:unit -- --testsuite=${{ matrix.testsuite }}
run: php vendor/bin/phpunit --colors=always --testsuite=${{ matrix.testsuite }}
- name: Check PHPUnit integration script is defined
id: check_integration

View file

@ -157,7 +157,7 @@ jobs:
# Only run if phpunit config file exists
if: steps.check_phpunit.outcome == 'success'
working-directory: apps/${{ env.APP_NAME }}
run: composer run test:unit -- --testsuite=${{ matrix.testsuite }}
run: php vendor/bin/phpunit --colors=always --testsuite=${{ matrix.testsuite }}
- name: Check PHPUnit integration script is defined
id: check_integration

View file

@ -149,7 +149,7 @@ jobs:
working-directory: apps/${{ env.APP_NAME }}
env:
XDEBUG_MODE: ${{ matrix.xdebug_mode }}
run: composer run test:unit -- --testsuite=${{ matrix.testsuite }}
run: php vendor/bin/phpunit --colors=always --testsuite=${{ matrix.testsuite }}
- name: Check PHPUnit integration script is defined
id: check_integration