From 3477a9bceb27c9acadcca64385e90fc2df6ee471 Mon Sep 17 00:00:00 2001 From: n <n@tourmentine.com> Date: Sun, 29 Dec 2024 11:03:03 +0100 Subject: [PATCH] CI: disable PHP version check for PHP-CS-Fixer --- .forgejo/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index fc9596d..8f18e6a 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -29,6 +29,6 @@ jobs: - name: Lint PHP files run: vendor/bin/phplint --no-cache --no-progress --exclude=vendor --verbose - name: PHP CS Fixer - run: vendor/bin/php-cs-fixer fix --dry-run --verbose --diff . + run: PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run --verbose --diff . - run: echo "🍏 This job's status is ${{ job.status }}."