Port d05e8e8285a052ad715cd6fb4d6d80890cf3c4d8 #7445
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: "Static Analysis" | |
on: | |
pull_request: | |
branches: | |
- "*.x" | |
paths: | |
- .github/workflows/static-analysis.yml | |
- composer.* | |
- src/** | |
- phpstan* | |
- psalm* | |
- tests/StaticAnalysis/** | |
push: | |
branches: | |
- "*.x" | |
paths: | |
- .github/workflows/static-analysis.yml | |
- composer.* | |
- src/** | |
- phpstan* | |
- psalm* | |
- tests/StaticAnalysis/** | |
jobs: | |
static-analysis-phpstan: | |
name: Static Analysis with PHPStan | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
include: | |
- dbal-version: default | |
config: phpstan.neon | |
- dbal-version: 3.8.2 | |
config: phpstan-dbal3.neon | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v4" | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: "8.3" | |
tools: cs2pr | |
- name: Require specific DBAL version | |
run: "composer require doctrine/dbal ^${{ matrix.dbal-version }} --no-update" | |
if: "${{ matrix.dbal-version != 'default' }}" | |
- name: Install dependencies with Composer | |
uses: ramsey/composer-install@v2 | |
- name: Run static analysis with phpstan/phpstan | |
run: "vendor/bin/phpstan analyse -c ${{ matrix.config }} --error-format=checkstyle | cs2pr" | |
static-analysis-psalm: | |
name: Static Analysis with Psalm | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
dbal-version: | |
- default | |
- 3.8.2 | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v4" | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: "8.3" | |
tools: cs2pr | |
- name: Require specific DBAL version | |
run: "composer require doctrine/dbal ^${{ matrix.dbal-version }} --no-update" | |
if: "${{ matrix.dbal-version != 'default' }}" | |
- name: Install dependencies with Composer | |
uses: ramsey/composer-install@v3 | |
- name: Run static analysis with Vimeo Psalm | |
run: vendor/bin/psalm --shepherd |