From 40ec4f65ec8f9bddd65e1ff5dc38110962d927eb Mon Sep 17 00:00:00 2001 From: Feek Date: Sun, 12 Apr 2020 12:02:44 -0700 Subject: [PATCH] chore: run phpcs on prs --- .github/workflows/lint.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..28de5e1 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,12 @@ +name: PHPCS check + +on: pull_request + +jobs: + phpcs: + name: PHPCS + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: PHPCS check + uses: chekalsky/phpcs-action@v1