Skip to content

Fix workflow errors #69

Fix workflow errors

Fix workflow errors #69

Workflow file for this run

on:
push:
branches:
- main
pull_request:
types: [ opened, labeled, synchronize ]
name: PHPStan Code Analysis
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- name: "📥 Fetching Repository Contents"
uses: actions/checkout@v4.1.1
- name: "💽 Installing PHP, Composer, CS2PR"
uses: shivammathur/setup-php@2.30.2
with:
php-version: 8.0.22
coverage: none
ini-values: display_errors = on, error_reporting = E_ALL, opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=64M
tools: composer
- name: "💽 Installing Composer Packages"
run: composer install
- name: "🧪 Test"
run: vendor/bin/phpstan analyze ./ --memory-limit=2G