diff --git a/Makefile b/Makefile index 7c1b2d5f..a33a530c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,14 @@ +# Test steps, install, lint, test. +test: install lint-ci test-ci + +# Composer install step install: composer install -test: install +# Linter step +lint-ci: + composer lint + +# Test step +test-ci: composer test-ci