We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6593b61 commit 2b62a21Copy full SHA for 2b62a21
.github/workflows/phpcs.yml
@@ -19,7 +19,9 @@ jobs:
19
# Check the code-style consistency of the PHP files.
20
- name: Check PHP code style
21
id: phpcs
22
- run: composer lint:wpcs -- --config-set ignore_warnings_on_exit 1 --no-cache --report-full --report-checkstyle=./phpcs-report.xml
+ run: |
23
+ composer lint:wpcs --config-set ignore_warnings_on_exit 1
24
+ composer --no-cache --report-full --report-checkstyle=./phpcs-report.xml
25
- name: Show PHPCS results in PR
26
if: ${{ always() && steps.phpcs.outcome == 'failure' }}
27
run: cs2pr ./phpcs-report.xml
0 commit comments