Accurate sizes: Use block context approach #4453
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: Code Linting | |
on: | |
push: | |
branches: | |
- trunk | |
- 'release/**' | |
# Only run if PHP-related files changed. | |
paths: | |
- '.github/workflows/php-lint.yml' | |
- '**.php' | |
- 'phpcs.xml.dist' | |
- 'phpstan.neon.dist' | |
- 'composer.json' | |
- 'composer.lock' | |
pull_request: | |
# Only run if PHP-related files changed. | |
paths: | |
- '.github/workflows/php-lint.yml' | |
- '**.php' | |
- 'phpcs.xml.dist' | |
- 'phpstan.neon.dist' | |
- 'composer.json' | |
- 'composer.lock' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
php-lint: | |
name: PHP | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: styfle/[email protected] | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: latest | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Validate Composer configuration | |
run: composer validate --strict | |
- name: Composer Install | |
run: composer install --no-interaction --no-progress | |
- name: PHP Lint | |
run: composer lint:all | |
- name: PHPStan | |
run: composer phpstan |