Skip to content

Timeout on actions #308

Timeout on actions

Timeout on actions #308

Workflow file for this run

name: PHPStan
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
phpstan:
name: "PHPStan ${{ matrix.php-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
php_version: [8.1]
steps:
- uses: actions/checkout@v2
- name: "Install dependencies with Composer"
uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php_version }}
version: 2
args: --profile --ignore-platform-reqs
- name: 'PHPStan Static Analysis'
uses: php-actions/phpstan@v3
with:
configuration: tests/phpstan.neon
memory_limit: 256M