Skip to content

Commit 6b8d93e

Browse files
committed
Drop -q option when using phpcs
It was initially used because phpcs wrongly output things not intended to be piped into other programs to stdout, such as the progress bar and timing information.
1 parent 3eba1f1 commit 6b8d93e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/coding-standards.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ jobs:
5151
dependency-versions: "${{ inputs.composer-dependency-versions }}"
5252
composer-options: "${{ inputs.composer-options }}"
5353

54-
# https://github.com/doctrine/.github/issues/3
5554
- name: "Run PHP_CodeSniffer"
5655
run: |
57-
vendor/bin/phpcs -q --report-emacs --report-diff || true
58-
vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr
56+
vendor/bin/phpcs --report-emacs --report-diff || true
57+
vendor/bin/phpcs --no-colors --report=checkstyle | cs2pr

0 commit comments

Comments
 (0)