From 38f779293739789b6adda98a8c020c3cee766a1b Mon Sep 17 00:00:00 2001 From: Gary Jones Date: Fri, 16 Aug 2024 18:51:28 +0100 Subject: [PATCH] CI: Enable Coding Standards checks --- .github/workflows/cs-lint.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cs-lint.yml b/.github/workflows/cs-lint.yml index 8dd2b7c..0acc966 100644 --- a/.github/workflows/cs-lint.yml +++ b/.github/workflows/cs-lint.yml @@ -62,9 +62,9 @@ jobs: xml-schema-file: ./vendor/phpunit/phpunit/phpunit.xsd # Check the code-style consistency of the PHP files. -# - name: Check PHP code style -# continue-on-error: true -# run: vendor/bin/phpcs --report-full --report-checkstyle=./phpcs-report.xml + - name: Check PHP code style + continue-on-error: true + run: vendor/bin/phpcs --report-full --report-checkstyle=./phpcs-report.xml -# - name: Show PHPCS results in PR -# run: cs2pr ./phpcs-report.xml + - name: Show PHPCS results in PR + run: cs2pr ./phpcs-report.xml