Skip to content

chore(deps): bump actions/checkout from 3 to 4 #56

chore(deps): bump actions/checkout from 3 to 4

chore(deps): bump actions/checkout from 3 to 4 #56

Workflow file for this run

name: Static Analysis
on: ['push', 'pull_request']
jobs:
phpstan:
runs-on: ubuntu-latest
strategy:
matrix:
dependency-version: [prefer-lowest, prefer-stable]
name: PHPStan (${{ matrix.dependency-version }})
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer
coverage: none
- name: Install Dependencies
run: composer update --prefer-stable --no-interaction --prefer-dist --no-progress --ansi
- name: Run PHPStan
run: vendor/bin/phpstan analyse --no-progress --ansi