From 3d173bc98ca97f137b841a2834e2b245ba722e10 Mon Sep 17 00:00:00 2001 From: Petr Karmashev Date: Thu, 13 Mar 2025 14:26:35 +0300 Subject: [PATCH] phonies added to makefile instructions --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 83becc7..41f1bf9 100644 --- a/Makefile +++ b/Makefile @@ -2,12 +2,15 @@ PATH := $(shell pwd)/bin:$(PATH) $(shell cp -n dev.env .env) include .env +.PHONY: build build: docker build --build-arg PHP_VERSION=$(PHP_VERSION) -t $(PHP_DEV_IMAGE) . +.PHONY: install install: build composer install +.PHONY: test test: vendor/bin/phpunit