feat: implement psalm #15
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: Static analysis | |
on: pull_request | |
concurrency: | |
group: psalm-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
static-analysis: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
- "8.4" | |
name: static-psalm-analysis | |
steps: | |
- name: Checkout | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
persist-credentials: false | |
- name: Set up php${{ matrix.php }} | |
uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
ini-file: development | |
# Temporary workaround for missing pcntl_* in PHP 8.3 | |
ini-values: disable_functions= | |
- name: Install dependencies | |
run: composer install | |
- name: Run coding standards check | |
run: vendor/bin/psalm --no-cache --threads=$(nproc) --output-format=github |