Skip to content

Merge pull request #103 from cslant/dependabot/github_actions/stefanz… #749

Merge pull request #103 from cslant/dependabot/github_actions/stefanz…

Merge pull request #103 from cslant/dependabot/github_actions/stefanz… #749

Workflow file for this run

name: PHPStan
on: [push, pull_request]
jobs:
phpstan:
runs-on: ${{ matrix.os }}
name: PHPStan - P${{ matrix.php }}
strategy:
matrix:
os: [ ubuntu-latest ]
php: [ '8.2', '8.3', '8.4' ]
steps:
- uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Checkout code
uses: actions/checkout@v5
- name: Install dependencies
run: |
composer install --no-interaction --no-progress --no-suggest
- name: Run PHPStan
run: |
composer analyse --error-format=github