Author: Andreas Möller (localheinz) Committer: GitHub (web-flow) Pusher: saundefined Date: 2024-02-12T19:55:31+03:00
Commit: https://github.com/php/web-php/commit/a52208d9b378f0e5d9206aabe9d760cb4addb770 Raw diff: https://github.com/php/web-php/commit/a52208d9b378f0e5d9206aabe9d760cb4addb770.diff Fix: Explicitly configure dots progress reporter (#909) Changed paths: M .github/workflows/integrate.yaml M Makefile Diff: diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index deaa8320da..bbb9e026ec 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 505d6ac764..92d2a183aa 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,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: vendor ## Runs tests -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php