Skip to content

Correct errors in README code examples. #5

Correct errors in README code examples.

Correct errors in README code examples. #5

Workflow file for this run

---
name: PHPStan
on:
push: ~
pull_request: ~
jobs:
phpunit:
name: PHPStan tests on ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '8.1', '8.2' ]
composer-flags: [ '' ]
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
tools: composer:v2
- run: composer update --no-progress ${{ matrix.composer-flags }}
- run: vendor/bin/phpstan