Bro Delete this fork! #4
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-php: | |
name: Prepare PHP | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php: | |
- "8.2" | |
steps: | |
- name: Build and prepare PHP cache | |
uses: pmmp/setup-php-action@main | |
with: | |
php-version: ${{ matrix.php }} | |
install-path: "../bin" | |
pm-version-major: "5" | |
phpstan: | |
name: PHPStan analysis | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: | |
- "8.2" | |
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@v2 | |
with: | |
path: "~/.cache/composer" | |
key: "php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}" | |
restore-keys: "php-${{ matrix.php }}-composer-" | |
- name: Install PHPStan Composer dependencies | |
run: composer install --prefer-dist --no-interaction | |
- name: phpstan analyze | |
run: composer analyze |