chore(deps): Update dependency esi/phpunit-coverage-check to v3 #396
Workflow file for this run
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: "PHPStan" | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
# Is it overkill to run PHPStan using different PHP versions? Probably :) | |
jobs: | |
phpstan: | |
name: "PHPStan Static Analysis ${{ matrix.php }}" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [ '8.2', '8.3', '8.4' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install PHP ${{ matrix.php }}" | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: mbstring | |
- name: "Validate composer.json and composer.lock" | |
run: composer validate --strict | |
- name: "Setup Composer, install dependencies" | |
uses: ramsey/composer-install@v3 | |
with: | |
composer-options: "--prefer-dist --optimize-autoloader" | |
require-lock-file: "true" | |
- name: "Run PHPStan" | |
run: composer run-script phpstan |