From 2a6ff76cb3f514dd54ee9fc7ee4adb7732ce3260 Mon Sep 17 00:00:00 2001 From: kkmuffme <11071985+kkmuffme@users.noreply.github.com> Date: Wed, 7 Jun 2023 08:45:42 +0200 Subject: [PATCH] set phpcs memory limit in circle ci (suggested number, no idea if that's enough) --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 08c1a0d66..fb7edfe00 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -37,7 +37,7 @@ jobs: - run: name: Code Style Analysis with PHPCS - command: vendor/bin/phpcs + command: vendor/bin/phpcs -d memory_limit=512M phar-build: executor: php-74