Changeset 54678
- Timestamp:
- 10/24/2022 04:47:15 PM (2 years ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 2 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 -
trunk/.github/workflows/php-compatibility.yml
r54674 r54678 98 98 99 99 - name: Run PHP compatibility tests 100 continue-on-error: true100 id: phpcs 101 101 run: phpcs --standard=phpcompat.xml.dist --report-full --report-checkstyle=./.cache/phpcs-compat-report.xml 102 102 103 103 - name: Show PHPCompatibility results in PR 104 if: ${{ always() && steps.phpcs.outcome == 'failure' }} 104 105 run: cs2pr ./.cache/phpcs-compat-report.xml 105 106
Note: See TracChangeset
for help on using the changeset viewer.