[TASK] Update PHPStan packages to v2 (major) - abandoned #272
Workflow file for this run
This file contains hidden or 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: CGL | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| cgl: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| # Prepare environment | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| # @todo Use PHP 8.4 once PHP-CS-Fixer supports PHP 8.4 | |
| php-version: 8.3 | |
| tools: composer:v2, composer-require-checker, composer-unused | |
| coverage: none | |
| # Validation | |
| - name: Validate composer.json | |
| run: composer validate | |
| # Install dependencies | |
| - name: Install Composer dependencies | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| composer-options: --no-plugins | |
| # Check Composer dependencies | |
| - name: Check dependencies | |
| run: composer-require-checker check | |
| - name: Re-install Composer dependencies | |
| uses: ramsey/composer-install@v3 | |
| - name: Check for unused dependencies | |
| run: composer-unused | |
| # Linting | |
| - name: Lint composer.json | |
| run: composer cgl lint:composer | |
| - name: Lint Editorconfig | |
| run: composer cgl lint:editorconfig | |
| - name: Lint PHP | |
| run: composer cgl lint:php | |
| # SCA | |
| - name: SCA PHP | |
| run: composer cgl sca:php -- --error-format github | |
| # Migration | |
| - name: Run Rector migration | |
| run: composer cgl migration:rector -- --dry-run |