add safety checks

This commit is contained in:
grillazz 2021-05-30 17:23:05 +02:00
parent 617bc39392
commit 8004788431

View File

@ -26,6 +26,10 @@ requirements: ## Refresh requirements.txt from pipfile.lock
test: ## Run project tests
docker-compose run --rm app pytest
.PHONY: safety
test: ## Check project and dependencies with safety https://github.com/pyupio/safety
docker-compose run --rm app safety check
.PHONY: lint
lint: ## Linte project code.
isort .