Skip to content

debug

debug #1

Workflow file for this run

name: PHPUnit & PHPStan
on: [push]
permissions:
contents: read
jobs:
psalm:
name: Psalm
runs-on: Ubuntu-20.04
env:
php-version: '8.0'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.php-version }}
ini-values: "memory_limit=-1"
coverage: none
- name: Checkout target branch
uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
- name: Checkout PR
uses: actions/checkout@v4
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Psalm
run: ./vendor/bin/psalm.phar --output-format=github --no-progress