Changeset 54371 for trunk/.github/workflows/coding-standards.yml
- Timestamp:
- 10/04/2022 12:43:30 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r54343 r54371 103 103 104 104 - name: Run PHPCS on all Core files 105 run: phpcs -q -n --report=checkstyle | cs2pr 105 continue-on-error: true 106 run: phpcs -n --report-full --report-checkstyle=./.cache/phpcs-report.xml 107 108 - name: Show PHPCS results in PR 109 run: cs2pr ./.cache/phpcs-report.xml 106 110 107 111 - name: Check test suite files for warnings 108 run: phpcs tests -q --report=checkstyle | cs2pr 112 continue-on-error: true 113 run: phpcs tests --report-full --report-checkstyle=./.cache/phpcs-tests-report.xml 114 115 - name: Show test suite scan results in PR 116 run: cs2pr ./.cache/phpcs-tests-report.xml 109 117 110 118 - name: Ensure version-controlled files are not modified during the tests
Note: See TracChangeset
for help on using the changeset viewer.