Skip to content

Update CHANGELOG.md file with the new release information #2

Update CHANGELOG.md file with the new release information

Update CHANGELOG.md file with the new release information #2

Workflow file for this run

name: Run PHPStan
on:
push:
paths:
- '**.php'
- 'phpstan.neon.dist'
jobs:
phpstan:
name: phpstan
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
coverage: none
- name: Install composer dependencies
run: composer update --prefer-dist --no-interaction
- name: Run PHPStan
run: composer analyze