Skip to content

Allow Symfony 8

Allow Symfony 8 #56

name: Static Analysis
on:
pull_request:
branches: ['2.x', '1.x']
push:
branches: ['2.x', '1.x']
jobs:
phpstan:
name: PHPStan (PHP ${{ matrix.php-version }})
runs-on: ubuntu-24.04
strategy:
matrix:
php-version:
- '8.4'
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: ${{ matrix.php-version }}
tools: cs2pr
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
- name: Install Composer dependencies for PHPStan
uses: ramsey/composer-install@v3
with:
composer-options: '--working-dir=tools/phpstan'
- name: Run PHPStan
run: 'tools/phpstan/vendor/bin/phpstan analyse --error-format=checkstyle | cs2pr'