Skip to content

psalm

psalm #145

Workflow file for this run

name: psalm
on:
push:
branches:
- 'gh-pages'
pull_request:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
permissions:
contents: read
jobs:
psalm:
name: Psalm Static Analysis on PHP ${{ matrix.php-version }} (Ubuntu 24.04)
runs-on: ubuntu-24.04
strategy:
matrix:
php-version:
- '8.4'
steps:
- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, xml
tools: composer:v2
coverage: none
- name: Checkout Repository
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
- name: Install Dependencies
run: composer install --prefer-dist --no-interaction --no-progress --dev
- name: Run Psalm
run: vendor/bin/psalm --config=psalm.xml.dist --show-info=true