Enhance PHP workflow with static analysis and style checks

Added PHPStan and code style check to workflow.
This commit is contained in:
René Halberstadt
2026-07-18 14:36:54 +02:00
committed by GitHub
parent c4f19e0c26
commit 3abcd5633c
+7 -4
View File
@@ -32,8 +32,11 @@ jobs:
- name: Install dependencies
run: composer install --prefer-dist --no-progress
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md
- name: PHPStan
run: composer phpstan
# - name: Run test suite
# run: composer run-script test
- name: Code style check
run: composer cs-check
- name: Tests
run: composer test