Add Makefile, use in GitHub Actions
This commit is contained in:
parent
7a5a1871df
commit
6ef4cb5ee0
2 changed files with 7 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -26,4 +26,4 @@ jobs:
|
|||
--optimize-autoloader
|
||||
|
||||
- name: Run PHPCS
|
||||
run: vendor/bin/phpcs -v
|
||||
run: make phpcs
|
||||
|
|
6
Makefile
Normal file
6
Makefile
Normal file
|
@ -0,0 +1,6 @@
|
|||
.PHONY: *
|
||||
|
||||
phpcs:
|
||||
vendor/bin/phpcs -v
|
||||
|
||||
test: phpcs
|
Loading…
Add table
Add a link
Reference in a new issue