Skip to content

updated composer for 8.3 #4

updated composer for 8.3

updated composer for 8.3 #4

Workflow file for this run

name: Static code analysis
on: [ push, pull_request ]
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ 8.2, 8.1 ]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-interaction
- name: Run PHPStan
run: ./vendor/bin/phpstan analyse --memory-limit=2G --error-format=github