Fix psalm after release of new major versions of ORM and DBAL #1284
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: | |
pull_request: | |
branches: | |
- "*.x" | |
push: | |
branches: | |
- "*.x" | |
jobs: | |
static-analysis-psalm: | |
name: "Static Analysis with Psalm" | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v4" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "8.2" | |
- name: "Enforce using stable dependencies" | |
run: "composer config minimum-stability stable" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v2" | |
- name: "Run a static analysis with vimeo/psalm" | |
run: "vendor/bin/psalm --show-info=false --stats --output-format=github --threads=$(nproc) --find-unused-psalm-suppress" |