Skip to content

Various PHPStan fixes. #7

Various PHPStan fixes.

Various PHPStan fixes. #7

Workflow file for this run

---
name: PHPUnit
on:
push: ~
pull_request: ~
jobs:
phpunit:
name: PHPUnit tests on ${{ matrix.php }} ${{ matrix.composer-flags }}
runs-on: ubuntu-latest
strategy:
matrix:

Check failure on line 12 in .github/workflows/phpunit.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/phpunit.yaml

Invalid workflow file

You have an error in your yaml syntax on line 12
php: [ '8.1', '8.2', '8.3'' ]
composer-flags: [ '' ]
phpunit-flags: [ '--coverage-text' ]
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
tools: composer:v2
- run: composer install --no-progress ${{ matrix.composer-flags }}
- run: vendor/bin/phpunit ${{ matrix.phpunit-flags }}