Changeset 54856 for trunk/.github/workflows/coding-standards.yml
- Timestamp:
- 11/18/2022 02:50:52 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/.github/workflows/coding-standards.yml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r54851 r54856 57 57 # - Generate a report for displaying `test` directory issues as pull request annotations. 58 58 # - Ensures version-controlled files are not modified or deleted. 59 60 59 phpcs: 61 60 name: PHP coding standards … … 73 72 php-version: '7.4' 74 73 coverage: none 75 tools: c omposer, cs2pr74 tools: cs2pr 76 75 77 76 # This date is used to ensure that the PHPCS cache is cleared at least once every week. … … 87 86 key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-phpcs-cache-${{ hashFiles('**/composer.json', 'phpcs.xml.dist') }} 88 87 88 # Since Composer dependencies are installed using `composer update` and no lock file is in version control, 89 # passing a custom cache suffix ensures that the cache is flushed at least once per week. 89 90 - name: Install Composer dependencies 90 91 uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # v2.2.0 91 92 with: 92 c omposer-options: "--no-progress --no-ansi"93 custom-cache-suffix: ${{ steps.get-date.outputs.date }} 93 94 94 95 - name: Make Composer packages available globally
Note: See TracChangeset
for help on using the changeset viewer.