This repository was archived by the owner on Nov 7, 2025. It is now read-only.
chore(deps): update dependency rector/rector to v2.1.7 - autoclosed #563
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: "Quality: Static Analysis" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened, edited] | |
| permissions: | |
| contents: read | |
| jobs: | |
| phpstan: | |
| name: "PHPStan" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # 2.35.4 | |
| with: | |
| php-version: "8.3" | |
| extensions: dom, curl, libxml, mbstring, zip, fileinfo | |
| tools: composer:v2 | |
| - name: Install dependencies | |
| run: composer update --prefer-stable --no-interaction --no-progress --ansi | |
| - name: Run PHPStan | |
| run: vendor/bin/phpstan analyse --no-progress | |
| psalm: | |
| name: "Psalm" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # 2.35.4 | |
| with: | |
| php-version: "8.3" | |
| extensions: dom, curl, libxml, mbstring, zip, fileinfo | |
| tools: composer:v2 | |
| - name: Install dependencies | |
| run: composer update --prefer-stable --no-interaction --no-progress --ansi | |
| - name: Run Psalm | |
| run: vendor/bin/psalm --output-format=github --shepherd |