Skip to content

[Build] support NG fork #25

[Build] support NG fork

[Build] support NG fork #25

Workflow file for this run

name: PHPStan CI
on: push
jobs:
phpstan:
name: PHPStan Analysis
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Startup
uses: actions/checkout@v3
- name: Setup PHP and tools
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
tools: phpstan
coverage: none
- name: Install Composer dependencies
run: composer install --prefer-dist --no-interaction --ignore-platform-reqs
- name: Run PHPStan
run: phpstan analyze --no-progress