mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireSync.git
synced 2026-05-31 23:54:06 +08:00
21 lines
273 B
Makefile
21 lines
273 B
Makefile
|
|
COMPOSER = composer
|
|
#COMPOSER = docker compose run -it --rm aspiresync composer
|
|
|
|
build:
|
|
$(COMPOSER) install
|
|
|
|
test:
|
|
$(COMPOSER) run test
|
|
|
|
check: check-style test
|
|
|
|
fix: fix-style
|
|
|
|
check-style:
|
|
$(COMPOSER) run style:check
|
|
|
|
fix-style:
|
|
$(COMPOSER) run style:fix
|
|
|
|
.PHONY: *
|