diff options
author | Joas Schilling <coding@schilljs.com> | 2023-06-01 23:47:21 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-06-01 23:47:21 +0200 |
commit | 373147ac0212615d1739f6d2ece7698b63be7a9d (patch) | |
tree | d10a7181737ac53926e411cf58147dc45395fc46 /composer.json | |
parent | 9f1d497a0b4dbda86e676a3a55758bc2909cc781 (diff) | |
download | nextcloud-server-373147ac0212615d1739f6d2ece7698b63be7a9d.tar.gz nextcloud-server-373147ac0212615d1739f6d2ece7698b63be7a9d.zip |
fix(CI): Temporary workaround - Run Psalm CI with 1 thread only so it finishes
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/composer.json b/composer.json index 8615b1ca8db..603bf86b7c0 100644 --- a/composer.json +++ b/composer.json @@ -48,6 +48,7 @@ "cs:check": "php-cs-fixer fix --dry-run --diff", "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l", "psalm": "psalm --threads=$(nproc)", + "psalm:ci": "psalm --threads=1", "psalm:update-baseline": "psalm --threads=$(nproc) --update-baseline" } } |