From 2f978081ea967922917ebb6fa02490dd5a21126b Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 24 Jun 2024 10:40:15 +0200 Subject: feat(CI): Speed up cs:check with parallelism Signed-off-by: Joas Schilling --- .php-cs-fixer.dist.php | 2 ++ 1 file changed, 2 insertions(+) (limited to '.php-cs-fixer.dist.php') diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 6354c24bfae..c6ce8bbea34 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -8,9 +8,11 @@ declare(strict_types=1); require_once './vendor-bin/cs-fixer/vendor/autoload.php'; use Nextcloud\CodingStandard\Config; +use PhpCsFixer\Runner\Parallel\ParallelConfigFactory; $config = new Config(); $config + ->setParallelConfig(ParallelConfigFactory::detect()) ->getFinder() ->ignoreVCSIgnored(true) ->exclude('config') -- cgit v1.2.3 e='10.0'>10.0 Vaadin web components: https://github.com/vaadin/vaadin-corewww-data
summaryrefslogtreecommitdiffstats
blob: b47c20eb8e912e71522db11beeb973d89bb3a09f (plain)
1
2
3
4
5
6
7
8