feat: php linter on pull requests

This commit is contained in:
gpedro
2022-11-22 19:39:32 -04:00
parent 2321cf84b0
commit 8270432041

13
.github/workflows/phplint.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
name: PHP Linting
on:
pull_request:
branches: [master, develop]
push:
branches: [master]
jobs:
phplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: michaelw90/PHP-Lint@master