Skip to content
This repository was archived by the owner on Aug 7, 2026. It is now read-only.

Improve readme badges processing #9

Improve readme badges processing

Improve readme badges processing #9

Workflow file for this run

name: PHPStan
on:
workflow_call:
pull_request:
jobs:
phpstan:
name: PHP ${{ matrix.php }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
php:
- "8.4"
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: ${{ matrix.php }}
tools: composer:v2, cs2pr
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
- name: Static analysis
run: vendor/bin/phpstan analyse --configuration=phpstan.neon