Run tests under PHP 8.5 in CI

This commit is contained in:
Alejandro Celaya
2025-07-21 10:28:47 +02:00
parent 3be49a25a0
commit afa509613a
3 changed files with 5 additions and 3 deletions

View File

@@ -43,5 +43,5 @@ runs:
coverage: xdebug
- name: Install dependencies
if: ${{ inputs.install-deps == 'yes' }}
run: composer install --no-interaction --prefer-dist
run: composer install --no-interaction --prefer-dist ${{ inputs.php-version == '8.5' && '--ignore-platform-req=php' || '' }}
shell: bash

View File

@@ -13,7 +13,8 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
php-version: ['8.3', '8.4']
php-version: ['8.3', '8.4', '8.5']
continue-on-error: ${{ inputs.php-version == '8.5' }}
env:
LC_ALL: C
steps:

View File

@@ -13,7 +13,8 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
php-version: ['8.3', '8.4']
php-version: ['8.3', '8.4', '8.5']
continue-on-error: ${{ inputs.php-version == '8.5' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # rr get-binary picks this env automatically
steps: