Skip to content

Bump phpstan/phpstan from 1.10.56 to 1.10.66 #65

Bump phpstan/phpstan from 1.10.56 to 1.10.66

Bump phpstan/phpstan from 1.10.56 to 1.10.66 #65

Workflow file for this run

name: phpstan
on:
push:
paths-ignore:
- 'Docs/**'
pull_request:
paths-ignore:
- 'Docs/**'
jobs:
phpstan:
name: phpstan
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
coverage: none
- name: Get Composer cache directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: PHPStan
run: vendor/bin/phpstan analyse --no-ansi --no-progress -c phpstan.neon