Merge pull request #12145 from greg0ire/4.0.x #8682
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: | |
branches: | |
- "*.x" | |
paths: | |
- .github/workflows/static-analysis.yml | |
- composer.* | |
- src/** | |
- phpstan* | |
- tests/StaticAnalysis/** | |
push: | |
branches: | |
- "*.x" | |
paths: | |
- .github/workflows/static-analysis.yml | |
- composer.* | |
- src/** | |
- phpstan* | |
- tests/StaticAnalysis/** | |
jobs: | |
static-analysis-phpstan: | |
name: Static Analysis with PHPStan | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v5" | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: "8.4" | |
tools: cs2pr | |
- name: Install dependencies with Composer | |
uses: ramsey/composer-install@v2 | |
- name: Run static analysis with phpstan/phpstan | |
run: "vendor/bin/phpstan analyse --error-format=checkstyle | cs2pr" |