Skip to content

Commit a52208d

Browse files
authored
Fix: Explicitly configure dots progress reporter (#909)
1 parent 12477fb commit a52208d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/integrate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: "composer install --ansi --no-interaction --no-progress"
5151

5252
- name: "Run friendsofphp/php-cs-fixer"
53-
run: "vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.php --diff --dry-run --verbose"
53+
run: "vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.php --diff --dry-run --show-progress=dots --verbose"
5454
env:
5555
PHP_CS_FIXER_IGNORE_ENV: "1"
5656

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ help: ## Displays this list of targets with descriptions
88

99
.PHONY: coding-standards
1010
coding-standards: vendor ## Fixes code style issues with friendsofphp/php-cs-fixer
11-
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --verbose
11+
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --show-progress=dots --verbose
1212

1313
.PHONY: tests
1414
tests: vendor ## Runs tests

0 commit comments

Comments
 (0)