Changeset 54921
- Timestamp:
- 12/01/2022 08:11:48 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r54856 r54921 83 83 uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # v3.0.11 84 84 with: 85 path: .cache/phpcs.json 85 path: | 86 .cache/phpcs-src.json 87 .cache/phpcs-tests.json 86 88 key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-phpcs-cache-${{ hashFiles('**/composer.json', 'phpcs.xml.dist') }} 87 89 … … 98 100 - name: Run PHPCS on all Core files 99 101 id: phpcs-core 100 run: phpcs -n --report-full -- report-checkstyle=./.cache/phpcs-report.xml102 run: phpcs -n --report-full --cache=./.cache/phpcs-src.json --report-checkstyle=./.cache/phpcs-report.xml 101 103 102 104 - name: Show PHPCS results in PR … … 106 108 - name: Check test suite files for warnings 107 109 id: phpcs-tests 108 run: phpcs tests --report-full -- report-checkstyle=./.cache/phpcs-tests-report.xml110 run: phpcs tests --report-full --cache=./.cache/phpcs-tests.json --report-checkstyle=./.cache/phpcs-tests-report.xml 109 111 110 112 - name: Show test suite scan results in PR
Note: See TracChangeset
for help on using the changeset viewer.