Skip to content

Remove skeletonmapper dependency #24

Remove skeletonmapper dependency

Remove skeletonmapper dependency #24

Workflow file for this run

name: "Static Analysis"
on:
pull_request:
branches:
- "*.x"
- "master"
push:
branches:
- "*.x"
- "master"
jobs:
static-analysis-phpstan:
name: "Static Analysis with PHPStan"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- name: "Setup PHP Action"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v2"
with:
composer-options: "--prefer-dist --no-progress --no-suggest"
- name: "Run PHPStan"
run: "./vendor/bin/phpstan analyse"