Skip to content

move symplify/coding-standard package here #82

move symplify/coding-standard package here

move symplify/coding-standard package here #82

Workflow file for this run

name: Code Analysis
on:
pull_request:
push:
branches:
- main
jobs:
code_analysis:
strategy:
fail-fast: false
matrix:
actions:
-
name: 'PHPStan'
run: composer phpstan --ansi
-
name: 'Composer Validate'
run: composer validate --ansi
-
name: 'Rector'
run: composer rector --ansi
-
name: 'Coding Standard'
run: composer check-cs --ansi
-
name: 'Tests'
run: vendor/bin/phpunit
-
name: 'Check Active Classes'
run: vendor/bin/class-leak check bin src packages/coding-standard/src --skip-type "Symplify\EasyCodingStandard\Contract\Console\Output\OutputFormatterInterface" --ansi
name: ${{ matrix.actions.name }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# see https://github.com/shivammathur/setup-php
- uses: shivammathur/setup-php@v2
with:
php-version: 8.4
coverage: none
# composer install cache - https://github.com/ramsey/composer-install
- uses: "ramsey/composer-install@v4"
- run: ${{ matrix.actions.run }}