Skip to content
name: static analysis
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-24.04
strategy:
fail-fast: true
name: Static Analysis
steps:
- name: Checkout code
uses: actions/checkout@v4

Check failure on line 23 in .github/workflows/static-analysis.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/static-analysis.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
tools: composer:v2
coverage: none
- name: Install dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 5
command: composer update --prefer-stable --prefer-dist --no-interaction --no-progress
- name: Execute type checking
run: vendor/bin/phpstan