Skip to content

Next 2.0 version configuration improvements #450

Next 2.0 version configuration improvements

Next 2.0 version configuration improvements #450

name: "Static Analysis"
on:
pull_request:
paths:
- .github/workflows/static-analysis.yml
- composer.*
- phpstan.neon.dist
- src/**
- tests/**
push:
branches:
- "main"
paths:
- .github/workflows/static-analysis.yml
- composer.*
- phpstan.neon.dist
- src/**
- tests/**
jobs:
phpstan:
name: "Static Analysis"
runs-on: "ubuntu-22.04"
strategy:
matrix:
php-version:
- "8.2"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: ${{ matrix.php-version }}
tools: cs2pr
- name: Install dependencies with Composer
uses: ramsey/composer-install@v2
- name: Run static analysis with phpstan/phpstan
run: vendor/bin/phpstan --error-format=checkstyle | cs2pr