chore(deps-dev): bump phpunit/phpunit from 10.5.58 to 10.5.62 #49
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: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| static-analysis: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| php: | |
| - 8.4 | |
| dependencies: | |
| - locked | |
| name: PHPStan on PHP ${{ matrix.php }} - ${{ matrix.dependencies }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| tools: composer:v2, phpstan:2 | |
| coverage: none | |
| - name: Composer install | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| dependency-versions: "${{ matrix.dependencies }}" | |
| - name: Run static analysis | |
| run: phpstan analyze |