From e88d3a75c8728a72efcb2c390279cd3232463f15 Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Thu, 18 Jul 2024 09:29:46 -0600 Subject: [PATCH] use our phpcs jobs but use the existing commit job --- .github/workflows/lint-test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index 20a9059..a1f4f58 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -31,6 +31,10 @@ jobs: with: github_token: ${{ github.token }} use_default_configuration_file: true + - name: Install Composer dependencies + run: composer install + - name: PHP Code Beautifier + run: composer phpcbf - uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "PHPCBF: Fix coding standards" @@ -38,3 +42,5 @@ jobs: branch: ${{ github.ref }} commit_user_name: "Pantheon Robot" commit_user_email: "bot@getpantheon.io" + - name: Lint + run: composer lint