1
0
mirror of synced 2024-11-22 11:56:03 +03:00
mg-bot-api-client-php/Makefile

27 lines
821 B
Makefile
Raw Normal View History

2019-06-10 16:24:22 +03:00
ROOT_DIR=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
SRC_DIR=$(ROOT_DIR)/src
BIN_DIR=$(ROOT_DIR)/bin
export PATH := $(PATH):$(ROOT_DIR)/dot
2019-06-10 16:24:22 +03:00
deps:
@echo "==> Installing dependencies"
@curl -L https://getcomposer.org/composer.phar -o $(BIN_DIR)/composer
@COMPOSER_HOME=/tmp php -d memory_limit=-1 $(BIN_DIR)/composer install
test:
@echo "==> Running tests"
@cd $(ROOT_DIR)
2019-06-19 12:03:37 +03:00
ifeq ($(wildcard .env), )
@echo "==> Creating .env file for testing purposes..."
@cp .env.dist .env
endif
2019-06-10 16:24:22 +03:00
@php -d memory_limit=-1 $(BIN_DIR)/phpunit -c phpunit.xml.dist --log-junit $(ROOT_DIR)/test-report.xml
@echo "==> Testing complete"
stan:
@echo "==> Running analysis"
@php $(BIN_DIR)/phpstan analyse -l 4 -c $(ROOT_DIR)/phpstan.neon $(SRC_DIR)
2019-06-21 16:42:04 +03:00
@echo "==> Analysis complete"
travis: test stan
@echo "==> Completed"