Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Gieling <github@dartcafe.de>2022-09-18 17:05:41 +0300
committerGitHub <noreply@github.com>2022-09-18 17:05:41 +0300
commit58f608f241dbb0a88615eb4f962f14244cbbec1d (patch)
treed9cfc80da884bbb8408cc6a02ede85f14711c36d /.github
parenta6c5282c6c784b263e11b3cd42c0f9c2810a8424 (diff)
parent591cc20559d838bf7ca9e2d632e2385907f8d119 (diff)
Merge pull request #2587 from nextcloud/dep/composer-move-deps-global
move some dev-deps to global
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/phpunit.yml15
1 files changed, 9 insertions, 6 deletions
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index f02a3499..6e3abb0e 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -38,6 +38,7 @@ jobs:
with:
server-version: ${{ matrix.server-versions }}
php-version: ${{ matrix.php-versions }}
+ php-tools: phpunit
server-path: ${{ env.SERVER_PATH }}
db-engine: sqlite
db-port: ${{ env.DB_PORT}}
@@ -47,11 +48,11 @@ jobs:
- name: PHPUnit
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
- run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
+ run: phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
- run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
+ run: phpunit -c tests/phpunit.integration.xml
mysql:
runs-on: ubuntu-latest
@@ -81,6 +82,7 @@ jobs:
with:
server-version: ${{ matrix.server-versions }}
php-version: ${{ matrix.php-versions }}
+ php-tools: phpunit
server-path: ${{ env.SERVER_PATH }}
db-engine: 'mysql'
db-port: ${{ env.DB_PORT }}
@@ -90,11 +92,11 @@ jobs:
- name: PHPUnit
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
- run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
+ run: phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
- run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
+ run: phpunit -c tests/phpunit.integration.xml
pgsql:
runs-on: ubuntu-latest
@@ -127,6 +129,7 @@ jobs:
with:
server-version: ${{ matrix.server-versions }}
php-version: ${{ matrix.php-versions }}
+ php-tools: phpunit
server-path: ${{ env.SERVER_PATH }}
db-engine: 'pgsql'
db-port: ${{ env.DB_PORT}}
@@ -136,8 +139,8 @@ jobs:
- name: PHPUnit
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
- run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
+ run: phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
- run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
+ run: phpunit -c tests/phpunit.integration.xml