Skip to content

Commit 8327032

Browse files
committed
Add quiet flag to PHPCS lint command in workflow
Updates the PHPCS lint step in the GitHub Actions workflow to include the -q (quiet) flag, reducing output noise during linting.
1 parent 10b3cdf commit 8327032

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/phpcs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
run: composer install --prefer-dist --no-progress
2525

2626
- name: Run PHPCS
27-
run: composer lint -- --report-checkstyle | cs2pr
27+
run: composer lint -- -q --report-checkstyle | cs2pr

0 commit comments

Comments
 (0)