Skip to content

Update phpstan/phpstan requirement from ~1.10.59 to ~1.10.59 || ~1.11.0 #83

Update phpstan/phpstan requirement from ~1.10.59 to ~1.10.59 || ~1.11.0

Update phpstan/phpstan requirement from ~1.10.59 to ~1.10.59 || ~1.11.0 #83

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@2.29.0
with:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: composer install --prefer-dist --no-interaction
- name: Run PHPStan
run: ./vendor/bin/phpstan analyze --no-progress