Skip to content

moved away from spatialbuilder to scopes to allow projects to define … #345

moved away from spatialbuilder to scopes to allow projects to define …

moved away from spatialbuilder to scopes to allow projects to define … #345

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