Allow Symfony 7 #20
Workflow file for this run
This file contains 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: Static analysis | |
on: | |
push: | |
branches: | |
- '*.x' | |
pull_request: | |
jobs: | |
phpstan: | |
name: phpstan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Downgrade composer and require extra extensions | |
# setting composer config version to be able to install with outdated composer version, see https://github.com/OskarStark/phpstan-ga/pull/50 | |
run: | | |
composer config version 1.3.3 | |
composer require --no-update phpstan/phpstan-symfony | |
- name: PHPStan | |
uses: docker://oskarstark/phpstan-ga | |
with: | |
args: analyze --no-progress | |
php-cs-fixer: | |
name: PHP-CS-Fixer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: PHP-CS-Fixer | |
uses: docker://oskarstark/php-cs-fixer-ga | |
with: | |
args: --dry-run --diff |