From 4199bf491f30dc684c51b33301f844a94a102568 Mon Sep 17 00:00:00 2001 From: Jon Stovell Date: Sun, 15 Feb 2026 15:16:52 -0700 Subject: [PATCH] Improves PHP-CS-Fixer workflow Signed-off-by: Jon Stovell --- .github/workflows/php-cs-fixer.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml index a56c225565..6c05ea97a9 100644 --- a/.github/workflows/php-cs-fixer.yml +++ b/.github/workflows/php-cs-fixer.yml @@ -8,14 +8,14 @@ on: jobs: php-cs-fixer: - name: PHP-CS-Fixer + name: Code standard compliance check runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #4.2.2 - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v46 + uses: tj-actions/changed-files@8cba46e29c11878d930bca7870bb54394d3e8b21 - name: Get extra arguments for PHP-CS-Fixer id: phpcs-intersection @@ -29,4 +29,4 @@ jobs: - name: PHP-CS-Fixer uses: docker://oskarstark/php-cs-fixer-ga with: - args: --config=.php-cs-fixer.dist.php -v --dry-run --stop-on-violation --using-cache=no --quiet --allow-risky=yes ${{ env.PHPCS_EXTRA_ARGS }} + args: --config=.php-cs-fixer.dist.php -v --dry-run --diff --no-ansi --show-progress=none --using-cache=no --allow-risky=yes ${{ env.PHPCS_EXTRA_ARGS }}