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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-17 11:59:20 +0300
committerJoas Schilling <coding@schilljs.com>2022-09-01 11:53:36 +0300
commitc142394f0e18e7b788437eea5868dc7555d6d73a (patch)
tree11941531230f811aea0a76973ca92dc2e1dfdc18 /.github
parentf31a3b819e535397b5f5e1bcefe543246c1d1949 (diff)
Use vendor-bin to separate dev from production dependencies
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml24
-rw-r--r--.github/workflows/phpunit.yml16
2 files changed, 32 insertions, 8 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index a9d1f0440..413caa369 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -8,6 +8,30 @@ updates:
time: "03:00"
timezone: Europe/Paris
open-pull-requests-limit: 10
+- package-ecosystem: composer
+ directory: "/vendor-bin/csfixer"
+ schedule:
+ interval: weekly
+ day: saturday
+ time: "03:00"
+ timezone: Europe/Paris
+ open-pull-requests-limit: 10
+- package-ecosystem: composer
+ directory: "/vendor-bin/phpunit"
+ schedule:
+ interval: weekly
+ day: saturday
+ time: "03:00"
+ timezone: Europe/Paris
+ open-pull-requests-limit: 10
+- package-ecosystem: composer
+ directory: "/vendor-bin/psalm"
+ schedule:
+ interval: weekly
+ day: saturday
+ time: "03:00"
+ timezone: Europe/Paris
+ open-pull-requests-limit: 10
- package-ecosystem: npm
directory: "/"
schedule:
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index b63a7e1c2..e5e1e5d7a 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -75,8 +75,8 @@ jobs:
# php -S localhost:8080 &
- name: PHPUnit
- working-directory: apps/${{ env.APP_NAME }}/tests/php
- run: ../../vendor/phpunit/phpunit/phpunit -c phpunit.xml
+ working-directory: apps/${{ env.APP_NAME }}
+ run: composer run test
# - name: PHPUnit integration
# working-directory: apps/${{ env.APP_NAME }}
@@ -150,8 +150,8 @@ jobs:
# php -S localhost:8080 &
- name: PHPUnit
- working-directory: apps/${{ env.APP_NAME }}/tests/php
- run: ../../vendor/phpunit/phpunit/phpunit -c phpunit.xml
+ working-directory: apps/${{ env.APP_NAME }}
+ run: composer run test
# - name: PHPUnit integration
# working-directory: apps/${{ env.APP_NAME }}
@@ -222,8 +222,8 @@ jobs:
# php -S localhost:8080 &
- name: PHPUnit
- working-directory: apps/${{ env.APP_NAME }}/tests/php
- run: ../../vendor/phpunit/phpunit/phpunit -c phpunit.xml
+ working-directory: apps/${{ env.APP_NAME }}
+ run: composer run test
# - name: PHPUnit integration
# working-directory: apps/${{ env.APP_NAME }}
@@ -287,8 +287,8 @@ jobs:
# php -S localhost:8080 &
- name: PHPUnit
- working-directory: apps/${{ env.APP_NAME }}/tests/php
- run: ../../vendor/phpunit/phpunit/phpunit -c phpunit.xml
+ working-directory: apps/${{ env.APP_NAME }}
+ run: composer run test
# - name: PHPUnit integration
# working-directory: apps/${{ env.APP_NAME }}