1 to 2 #240
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: | |
- '[0-9]+.x' | |
- '[0-9]+.[0-9]+' | |
- '[0-9]+.[0-9]+.x' | |
pull_request: | |
jobs: | |
phpstan-src: | |
name: PHPStan src | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Pull in optional dependencies | |
# also lock dbal to version 3 for now, as we need to stay compatible with it | |
run: | | |
composer require --no-update psr/simple-cache doctrine/dbal:^3.8 | |
composer update --no-dev --no-progress | |
- name: PHPStan | |
uses: docker://oskarstark/phpstan-ga | |
with: | |
args: analyze --no-progress | |
phpstan-tests: | |
name: PHPStan tests | |
runs-on: ubuntu-latest | |
env: | |
REQUIRE_DEV: "true" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
# also lock dbal to version 3 for now, as we need to stay compatible with it | |
run: | | |
composer require --no-update doctrine/dbal:^3.8 | |
composer update --no-progress | |
- name: PHPStan | |
uses: docker://oskarstark/phpstan-ga | |
with: | |
args: analyze --no-progress -c phpstan.tests.neon.dist | |
php-cs-fixer: | |
name: PHP-CS-Fixer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: PHP-CS-Fixer | |
uses: docker://oskarstark/php-cs-fixer-ga | |
with: | |
args: --dry-run --diff |