1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Fix: Explicitly configure dots progress reporter (#909)

This commit is contained in:
Andreas Möller
2024-02-12 17:55:31 +01:00
committed by GitHub
parent 12477fbcc4
commit a52208d9b3
2 changed files with 2 additions and 2 deletions

View File

@@ -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"

View File

@@ -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