Run CI coding standards on PHP 8.5
CI / PHP lint (7.4) (push) Successful in 52s
CI / PHP lint (8.1) (push) Successful in 48s
CI / PHP lint (8.5) (push) Successful in 49s
CI / Coding standards (push) Failing after 1m5s

Adds PHP 8.5 to the lint matrix and switches the coding standards job/cache key from PHP 8.1 to PHP 8.5.
This commit is contained in:
Heat module snapshot
2026-06-11 18:38:38 +02:00
parent d5d99940f6
commit df023beabd
+3 -3
View File
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['7.4', '8.1']
php-version: ['7.4', '8.1', '8.5']
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
@@ -26,11 +26,11 @@ jobs:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.5'
- uses: actions/cache@v4
with:
path: vendor
key: php-8.1-${{ hashFiles('composer.lock') }}
key: php-8.5-${{ hashFiles('composer.lock') }}
- name: Install dependencies
run: composer install --no-interaction --no-progress --prefer-dist
- name: Run PHP-CS-Fixer