Skip to content

[DoctrineExtra] New GenerateGraphSchemaCommand #830

[DoctrineExtra] New GenerateGraphSchemaCommand

[DoctrineExtra] New GenerateGraphSchemaCommand #830

Workflow file for this run

---
# https://github.com/marketplace/actions/checkout
# https://github.com/marketplace/actions/setup-php-action
name: PHP Code Style
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
jobs:
phpcs:
name: PHPCS
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: composer
- name: Composer
run: composer install
- name: Composer for vendor-bin
run: composer install
- name: PHPCS
# https://cs.symfony.com/doc/usage.html
run: php vendor/bin/php-cs-fixer fix --dry-run --diff --verbose --allow-risky=yes