Initial calculation with disabled element #464
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: PHPStan | |
| on: | |
| push: ~ | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| phpstan: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php-versions: ['8.1', '8.4'] | |
| prefer: ['prefer-stable', 'prefer-lowest'] | |
| name: PHPStan with PHP ${{ matrix.php-versions }} ${{ matrix.prefer }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| coverage: none | |
| env: | |
| fail-fast: true | |
| - name: Get composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Cache dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ matrix.prefer }}-${{ hashFiles('**/composer.json') }} | |
| restore-keys: ${{ runner.os }}-composer-${{ matrix.prefer }}- | |
| - name: Install dependencies | |
| run: | | |
| composer update --no-progress --prefer-dist --${{ matrix.prefer }} --optimize-autoloader && | |
| composer composer-phpstan -- update --no-progress --prefer-dist --optimize-autoloader | |
| - name: Run PHPStan | |
| run: composer phpstan -- analyze -c phpstan.ci.neon |