Use manually installed phpunit

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2020-11-12 17:49:26 +01:00
Родитель 31121bdf8d
Коммит 4e12321a94
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4C614C6ED2CDE6DF
1 изменённых файлов: 4 добавлений и 4 удалений

8
.github/workflows/phpunit.yml поставляемый
Просмотреть файл

@ -67,7 +67,7 @@ jobs:
- name: PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
run: phpunit -c tests/phpunit.xml
mysql:
runs-on: ubuntu-latest
@ -134,7 +134,7 @@ jobs:
- name: PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
run: phpunit -c tests/phpunit.xml
pgsql:
runs-on: ubuntu-latest
@ -203,7 +203,7 @@ jobs:
- name: PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
run: phpunit -c tests/phpunit.xml
oci:
runs-on: ubuntu-latest
@ -265,4 +265,4 @@ jobs:
- name: PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
run: phpunit -c tests/phpunit.xml