We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7d0570 commit fc51459Copy full SHA for fc51459
.github/workflows/check-cs.yml
@@ -27,11 +27,14 @@ jobs:
27
with:
28
php-version: 7.4
29
coverage: none
30
- tools: composer
+ tools: composer, cs2pr
31
32
- name: Install dependencies
33
run: |
34
composer update --prefer-dist --no-suggest --no-progress
35
36
- name: Check Code Style
37
- run: vendor/bin/phpcs
+ run: vendor/bin/phpcs --report-full --report-checkstyle=./phpcs-report.xml
38
+
39
+ - name: Show PHPCS results in PR
40
+ run: cs2pr ./phpcs-report.xml
0 commit comments