forked from Azure/azure-storage-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
38 lines (28 loc) · 1.16 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.PHONY: build
build: cs static test install ## Runs cs, static, and test targets
# https://www.gnu.org/software/make/manual/html_node/Force-Targets.html
always:
.PHONY: help
help:
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: install
install: ## Fixes coding standard issues with php-cs-fixer
docker compose run phpfpm composer install
.PHONY: cs
cs: ## Fixes coding standard issues with php-cs-fixer
docker compose run phpfpm vendor/bin/php-cs-fixer fix --diff --verbose
.PHONY: coverage
coverage: ## Collects coverage with phpunit
docker compose run phpfpm vendor/bin/phpunit --coverage-text --coverage-clover=.build/logs/clover.xml
.PHONY: test
test: ## Runs tests with phpunit
docker compose run phpfpm vendor/bin/phpunit
.PHONY: static
static: ## Runs static analyzers
docker compose run phpfpm vendor/bin/phpstan --memory-limit=2G
.PHONY: baseline
baseline: ## Generate baseline files
docker compose run phpfpm vendor/bin/phpstan --memory-limit=2G --generate-baseline
.PHONY: clean
clean: ## Cleans up build and vendor files
rm -rf vendor composer.lock .build