Skip to content

Commit 8a2563c

Browse files
authored
Merge pull request #1 from FreeElephants/fix-makefile-phonies
phonies added to makefile instructions
2 parents 636d457 + 3d173bc commit 8a2563c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@ PATH := $(shell pwd)/bin:$(PATH)
22
$(shell cp -n dev.env .env)
33
include .env
44

5+
.PHONY: build
56
build:
67
docker build --build-arg PHP_VERSION=$(PHP_VERSION) -t $(PHP_DEV_IMAGE) .
78

9+
.PHONY: install
810
install: build
911
composer install
1012

13+
.PHONY: test
1114
test:
1215
./bin/php vendor/bin/phpunit
1316

0 commit comments

Comments
 (0)