From 82704320415aadaded8d20c6d8d987b5e03f6e95 Mon Sep 17 00:00:00 2001 From: gpedro Date: Tue, 22 Nov 2022 19:39:32 -0400 Subject: [PATCH] feat: php linter on pull requests --- .github/workflows/phplint.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/phplint.yml diff --git a/.github/workflows/phplint.yml b/.github/workflows/phplint.yml new file mode 100644 index 00000000..a9c0d700 --- /dev/null +++ b/.github/workflows/phplint.yml @@ -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