From 15ecce0fc218ec346b43e510e3c601481587b73b Mon Sep 17 00:00:00 2001 From: Nick J Date: Tue, 28 Nov 2023 07:16:00 +1000 Subject: [PATCH] Added the PHPStan static analysis to the steps. --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c1b2d5f..a33a530c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,14 @@ +# Test steps, install, lint, test. +test: install lint-ci test-ci + +# Composer install step install: composer install -test: install +# Linter step +lint-ci: + composer lint + +# Test step +test-ci: composer test-ci