1
0
mirror of synced 2024-11-22 03:46:02 +03:00
mg-bot-api-client-php/Makefile
2019-07-16 15:04:54 +03:00

19 lines
431 B
Makefile

ROOT_DIR=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
SRC_DIR=$(ROOT_DIR)/src
BIN_DIR=$(ROOT_DIR)/vendor/bin
test:
@echo "==> Running tests"
@cd $(ROOT_DIR)
@cp .env.dist .env
@php -d memory_limit=-1 $(BIN_DIR)/phpunit -c phpunit.xml.dist
@echo "==> Testing complete"
stan:
@echo "==> Running analysis"
@php $(BIN_DIR)/phpstan analyse
@echo "==> Analysis complete"
travis: test stan
@echo "==> Completed"