From b37a76e0651bcae9e12104d96a55d1b092b77469 Mon Sep 17 00:00:00 2001 From: n Date: Sun, 29 Dec 2024 10:50:45 +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 1caeac4..f77c532 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -29,5 +29,5 @@ 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 }}."