Skip to content

Release 3.0.0

Release 3.0.0 #29

name: code analysis
on:
push:
jobs:
code-analysis:
name: code analysis
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: composer, php-cs-fixer, phpstan, phpunit
- run: composer install --prefer-dist --no-progress
- run: php-cs-fixer fix --diff --dry-run -v
- run: phpstan
- run: phpunit