fix? #16
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: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: PHPStan analysis | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: | |
- "8.1" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: pmmp/setup-php-action@2.0.0 | |
with: | |
php-version: ${{ matrix.php }} | |
install-path: "./bin" | |
pm-version-major: "5" | |
- name: Restore Composer package cache | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: "~/.cache/composer" | |
key: "php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}" | |
restore-keys: "php-${{ matrix.php }}-composer-" | |
- name: Install PHPStan Composer dependencies | |
working-directory: ./tools/phpstan | |
run: composer install --prefer-dist --no-interaction | |
- name: Run PHPStan | |
working-directory: ./tools/phpstan | |
run: vendor/bin/phpstan analyze |