New Role Capability #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PHPCS check | |
on: | |
pull_request: | |
# Cancel all previous workflow runs for the same branch that have not yet completed. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
phpcs: | |
name: PHPCS check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: 'shivammathur/setup-php@v2' | |
with: | |
php-version: 'latest' | |
ini-values: memory_limit=256M' | |
coverage: none | |
tools: cs2pr | |
- name: Install Composer dependencies | |
uses: 'ramsey/composer-install@v3' | |
with: | |
# Bust the cache at least once a month - output format: YYYY-MM. | |
custom-cache-suffix: $(date -u "+%Y-%m") | |
- name: Lint PHP | |
id: phpcbf | |
continue-on-error: true | |
run: composer phpcbf | |
- name: Run PHPCS checks | |
id: phpcs | |
run: composer phpcs | |
- name: Show PHPCS results in PR | |
if: ${{ always() && steps.phpcs.outcome == 'failure' }} | |
run: cs2pr ./phpcs-report.xml |