Skip to content

Static Analysis

Static Analysis #1894

name: Static Analysis
on:
push:
branches:
- master
- '*.x'
pull_request:
paths:
- .github/workflows/static-analysis.yml
- composer.*
- phpstan.neon.dist
- src/**
- tests/**
schedule:
- cron: '0 0 * * *'
jobs:
static-analysis-phpstan:
name: "Static Analysis with PHPStan"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer:v2
coverage: none
- name: Install dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 5
command: composer update --prefer-stable --prefer-dist --no-interaction --no-progress
- name: Run Static Analysis
run: "vendor/bin/phpstan --error-format=table"