Skip to content

Required and setAttributes update #15

Required and setAttributes update

Required and setAttributes update #15

Workflow file for this run

name: PHPStan
on:
pull_request:
branches:
- main
jobs:
phpstan:
name: phpstan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: curl, zip, mbstring
coverage: none
- name: Install dependencies
run: composer install --no-progress --no-suggest
- name: Run PHPStan
run: vendor/bin/phpstan analyse --no-progress --no-interaction --memory-limit=-1 --ansi src tests