Skip to content

Commit 2b8e5a9

Browse files
committed
Remove debug mode from PHPCS and PHPStan commands in reusable-php-lint.yml for cleaner output
1 parent 36e3523 commit 2b8e5a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/reusable-php-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ jobs:
4848

4949
- name: Detect coding standard violations (PHPCS)
5050
if: ${{ inputs.run-phpcs }}
51-
run: composer lint -- -q --report=checkstyle --severity=1 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 | cs2pr --debug
51+
run: composer lint -- -q --report=checkstyle --severity=1 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 | cs2pr
5252

5353
- name: Detect PHPStan issues
5454
if: ${{ inputs.run-phpstan }}
55-
run: composer phpstan -- --error-format=checkstyle | cs2pr --debug
55+
run: composer phpstan -- --error-format=checkstyle | cs2pr
5656

5757
- name: Detect PHP Mess Detector issues
5858
if: ${{ inputs.run-phpmd }}

0 commit comments

Comments
 (0)