Changeset 54678 for trunk/.github/workflows/coding-standards.yml
- Timestamp:
- 10/24/2022 04:47:15 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r54674 r54678 103 103 104 104 - name: Run PHPCS on all Core files 105 continue-on-error: true105 id: phpcs-core 106 106 run: phpcs -n --report-full --report-checkstyle=./.cache/phpcs-report.xml 107 107 108 108 - name: Show PHPCS results in PR 109 if: ${{ always() && steps.phpcs-core.outcome == 'failure' }} 109 110 run: cs2pr ./.cache/phpcs-report.xml 110 111 111 112 - name: Check test suite files for warnings 112 continue-on-error: true113 id: phpcs-tests 113 114 run: phpcs tests --report-full --report-checkstyle=./.cache/phpcs-tests-report.xml 114 115 115 116 - name: Show test suite scan results in PR 117 if: ${{ always() && steps.phpcs-tests.outcome == 'failure' }} 116 118 run: cs2pr ./.cache/phpcs-tests-report.xml 117 119
Note: See TracChangeset
for help on using the changeset viewer.