Skip to content

Merge pull request #776 from doctrine/4.5.x-merge-up-into-4.6.x_9JgLVdSd #258

Merge pull request #776 from doctrine/4.5.x-merge-up-into-4.6.x_9JgLVdSd

Merge pull request #776 from doctrine/4.5.x-merge-up-into-4.6.x_9JgLVdSd #258

name: "Static Analysis"
on:
pull_request:
branches:
- "*.x"
push:
jobs:
static-analysis-psalm:
name: "Static Analysis with Psalm"
runs-on: "ubuntu-20.04"
strategy:
matrix:
php-version:
- "8.1"
steps:
- name: "Checkout code"
uses: "actions/checkout@v3"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
- name: "Set minimum-stability to stable in Composer"
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) --php-version=${{ matrix.php-version }}"