chore(deps): update dependency phpstan/phpstan to v1.11.11 #156
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
phpunit: | |
name: PHPUnit | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- 8.1 | |
- 8.2 | |
- 8.3 | |
dependencies: | |
- highest | |
stability: | |
- stable | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP with PCOV | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: pcov | |
ini-values: zend.assertions=1 | |
tools: composer:v2,flex | |
- name: Enforce using stable dependencies | |
run: composer config minimum-stability stable | |
if: ${{ matrix.stability == 'stable' }} | |
- name: Install dependencies with Composer | |
uses: ramsey/composer-install@v3 | |
with: | |
dependency-versions: ${{ matrix.dependencies }} | |
composer-options: --prefer-dist --optimize-autoloader | |
- name: Run PHPUnit | |
run: composer test |