Skip to content

Use actions/checkout v4 in workflows #60

Use actions/checkout v4 in workflows

Use actions/checkout v4 in workflows #60

name: Static Analysis
on:
- "push"
- "pull_request"
jobs:
analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Setup PHP Action"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
extensions: "intl, xdebug"
- name: "Install dependencies"
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
- name: "PHPStan"
run: vendor/bin/phpstan analyse
- name: "Psalm"
run: vendor/bin/psalm