chore: add workflow_run trigger to split workflow after release compl… #13
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: Static Analysis | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| paths: | |
| - '**.php' | |
| - 'phpstan.neon.dist' | |
| - '.github/workflows/static-analysis.yml' | |
| jobs: | |
| phpstan: | |
| runs-on: ubuntu-latest | |
| name: PHPStan | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.2 | |
| - name: Cache Composer packages | |
| id: composer-cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: vendor | |
| key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-php- | |
| - name: Install dependencies | |
| run: composer install --no-interaction | |
| - name: Run PHPStan | |
| run: composer analyse |