diff options
author | Joas Schilling <coding@schilljs.com> | 2023-06-01 23:47:21 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-06-08 14:06:02 +0200 |
commit | 84af099e72d6672e2d3c9e4c03ab95373c2b50b8 (patch) | |
tree | 9579a5407d1297f8accea9b7b00477df3fd69d76 /composer.json | |
parent | 55ef2a093b231f2d476bd1e66358bc29f9da6984 (diff) | |
download | nextcloud-server-84af099e72d6672e2d3c9e4c03ab95373c2b50b8.tar.gz nextcloud-server-84af099e72d6672e2d3c9e4c03ab95373c2b50b8.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" } } |