Add Makefile, use in GitHub Actions

This commit is contained in:
Oliver Davies 2020-05-05 10:19:15 +01:00
parent 7a5a1871df
commit 6ef4cb5ee0
2 changed files with 7 additions and 1 deletions
.github/workflows
Makefile

View file

@ -26,4 +26,4 @@ jobs:
--optimize-autoloader
- name: Run PHPCS
run: vendor/bin/phpcs -v
run: make phpcs

6
Makefile Normal file
View file

@ -0,0 +1,6 @@
.PHONY: *
phpcs:
vendor/bin/phpcs -v
test: phpcs