From bceef063f68676047ccd00625ffa9b304fcec642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sun, 31 Dec 2023 18:16:46 +0100 Subject: [PATCH] Fix: Explicitly configure dots progress reporter --- .github/workflows/integrate.yaml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 406548d0bf..9297175307 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -50,7 +50,7 @@ jobs: run: "composer install --ansi --no-interaction --no-progress" - name: "Run friendsofphp/php-cs-fixer" - run: "vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.php --diff --dry-run --verbose" + run: "vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.php --diff --dry-run --show-progress=dots --verbose" env: PHP_CS_FIXER_IGNORE_ENV: "1" diff --git a/Makefile b/Makefile index af1d9278e1..57a5dc3f2e 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ help: ## Displays this list of targets with descriptions .PHONY: coding-standards coding-standards: vendor ## Fixes code style issues with friendsofphp/php-cs-fixer - vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --verbose + vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --show-progress=dots --verbose .PHONY: tests tests: ## Runs tests