File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
- .PHONY : it help setup up shell stan test
2
-
3
- it : up stan test
1
+ .PHONY : it
2
+ it : stan test
4
3
4
+ .PHONY : help
5
5
help : # # Displays this list of targets with descriptions
6
6
@grep -E ' ^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | sort | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
7
7
8
- setup : up vendor # # Set up the project
8
+ .PHONY : setup
9
+ setup : build vendor # # Set up the project
9
10
11
+ .PHONY : build
10
12
build : # # Build the dev container
11
13
docker-compose build
12
14
15
+ .PHONY : shell
13
16
shell : # # Jump into a shell in the php container
14
17
docker-compose run php bash
15
18
19
+ .PHONY : stan
16
20
stan : # # Run static analysis
17
21
docker-compose run php vendor/bin/phpstan analyse --memory-limit=2048M
18
22
23
+ .PHONY : test
19
24
test : # # Run PHPUnit tests
20
25
docker-compose run php vendor/bin/phpunit
21
26
You can’t perform that action at this time.
0 commit comments