feat: run PHPStan in CI if enabled

This commit is contained in:
Oliver Davies 2023-04-21 21:30:57 +01:00
parent 5ee6810c95
commit 0165029423

View file

@ -38,6 +38,10 @@ jobs:
just composer install --quiet --no-progress
# TODO: add PHPCS and PHPStan
# TODO: add PHPCS
{% if "phpstan" in php|keys -%}
just _run php phpstan analyze
{%- endif %}
just test --testdox --colors=always