Skip to content

build(deps): bump stefanzweifel/git-auto-commit-action from 4 to 5 #47

build(deps): bump stefanzweifel/git-auto-commit-action from 4 to 5

build(deps): bump stefanzweifel/git-auto-commit-action from 4 to 5 #47

Workflow file for this run

name: Static code analysis
on:
push:
paths:
- "**.php"
branches: [master, '*.x']
pull_request:
branches: [master, '*.x']
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ 8.2, 8.1 ]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-interaction
- name: Run PHPStan
run: ./vendor/bin/phpstan analyse --memory-limit=2G --error-format=github