chore(deps-dev): bump phpunit/phpunit from 11.2.7 to 11.3.4 #56
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
on: | |
pull_request: ~ | |
push: | |
branches: | |
- "main" | |
name: "Static analysis" | |
jobs: | |
phpstan: | |
name: "PHPStan" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.3" | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v4" | |
- name: "Set up PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
- name: "Determine composer cache directory" | |
id: "composer-cache" | |
run: "echo \"directory=$(composer config cache-dir)\" >> $GITHUB_OUTPUT" | |
- name: "Cache dependencies installed with composer" | |
uses: "actions/cache@v3" | |
with: | |
path: "${{ steps.composer-cache.outputs.directory }}" | |
key: "composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}" | |
restore-keys: | | |
composer-${{ matrix.php-version }}- | |
composer- | |
- name: "Download dependencies" | |
run: composer update --ansi --no-interaction --no-progress --optimize-autoloader | |
- name: "Run PHPStan" | |
run: vendor/bin/phpstan analyse --ansi --no-progress |