From ff506e2aef27c2448b155f16038e9f5b87d9b7dd Mon Sep 17 00:00:00 2001 From: Brabli <67018167+Brabli@users.noreply.github.com> Date: Thu, 21 Jul 2022 15:10:05 +0100 Subject: [PATCH] Add tests command --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index b5199a3..e8eec65 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ PHP = docker compose run php +.PHONY: composer_install composer_update static_analysis tests + composer_install: @$(PHP) composer install @@ -8,3 +10,7 @@ composer_update: static_analysis: @$(PHP) vendor/bin/psalm + +tests: + @$(PHP) rm -rf var/cache + @$(PHP) vendor/bin/phpunit