Drop unsupported versions of PHP and Symfony and update development dependencies #247
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code style and static analysis | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ master, develop ] | |
| jobs: | |
| php-cs: | |
| name: PHP CodeSniffer | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| extensions: redis, relay | |
| - name: Install dependencies | |
| run: composer install --no-progress --no-interaction --prefer-dist | |
| - name: Run script | |
| run: vendor/bin/phpcs | |
| phpstan: | |
| name: PHPStan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| extensions: redis, relay | |
| - name: Install dependencies | |
| run: composer install --no-progress --no-interaction --prefer-dist | |
| - name: Run script | |
| run: vendor/bin/phpstan analyse --memory-limit=1G | |
| composer-validate: | |
| name: Composer validate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| extensions: redis, relay | |
| - name: Install dependencies | |
| run: composer install --no-progress --no-interaction --prefer-dist | |
| - name: Run script | |
| run: composer validate |