Skip to content

Fix ci, deprecations, forms 3.3 support #6

Fix ci, deprecations, forms 3.3 support

Fix ci, deprecations, forms 3.3 support #6

Workflow file for this run

name: "Build"
on:
pull_request:
push:
branches:
- master
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '8.1', '8.2', '8.3', '8.4', '8.5' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Install dependencies
run: composer install --prefer-dist
- name: Run PHPStan
run: composer phpstan