From 42d531838ca10dc1c799346b53978fb1cabc2d39 Mon Sep 17 00:00:00 2001 From: Gabriel Pedro Date: Thu, 24 Nov 2022 03:19:09 -0400 Subject: [PATCH] feat: github actions phplint (#206) * feat: php linter on pull requests * test: breaking code * Revert "test: breaking code" This reverts commit 9d385a3421b3e2c72a5c7341bcd387663595c699. --- .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