From 837100ba4da1e177bd0df61bd8c9a00b13449b70 Mon Sep 17 00:00:00 2001 From: Tac Tacelosky Date: Fri, 2 Jan 2026 14:20:37 -0500 Subject: [PATCH] Add PHP 8.5 to code checks workflow --- .github/workflows/code_checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml index c005025..a5a7826 100644 --- a/.github/workflows/code_checks.yml +++ b/.github/workflows/code_checks.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['8.1', '8.2', '8.3', '8.4'] + php: ['8.1', '8.2', '8.3', '8.4', '8.5'] name: PHP ${{ matrix.php }} tests env: @@ -29,4 +29,4 @@ jobs: - name: Static analysis for source run: ./vendor/bin/phpstan analyse -l 6 src - name: Code Style - run: ./vendor/bin/php-cs-fixer fix --dry-run --verbose --config .php-cs-fixer.dist.php ./src \ No newline at end of file + run: ./vendor/bin/php-cs-fixer fix --dry-run --verbose --config .php-cs-fixer.dist.php ./src