fix: less cache #25
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: static analysis | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
strategy: | |
matrix: | |
php-version: [8.1] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php-version }}" | |
coverage: none | |
extensions: mbstring | |
tools: composer | |
- name: Download dependencies | |
run: composer update --no-interaction --no-progress | |
- name: Download PHPStan | |
run: composer bin phpstan require phpstan/phpstan | |
- name: Execute PHPStan | |
run: vendor/bin/phpstan analyze --no-progress |