Skip to content

chore: bump VERSION to 2.4.2 #22

chore: bump VERSION to 2.4.2

chore: bump VERSION to 2.4.2 #22

Workflow file for this run

name: PHPStan
on:
push:
branches: ['2.0']
pull_request:
branches: ['2.0']
jobs:
phpstan:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.1', '8.2', '8.3', '8.4', '8.5']
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}-composer-
- run: composer install --no-interaction --prefer-dist
- run: vendor/bin/phpstan analyse --no-progress --memory-limit=512M --error-format=github