Skip to content

Commit 751ffab

Browse files
committed
ci: Check against PHP 8.5
1 parent 41fb2f1 commit 751ffab

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
php-version:
2020
- "8.3"
2121
- "8.4"
22+
- "8.5"
2223

2324
steps:
2425
- name: "Checkout"

.github/workflows/code_coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v6
1515
- uses: shivammathur/setup-php@master
1616
with:
17-
php-version: 8.4
17+
php-version: 8.5
1818
coverage: xdebug
1919
- name: Load dependencies from cache
2020
id: composer-cache
@@ -23,9 +23,9 @@ jobs:
2323
- uses: actions/cache@v5
2424
with:
2525
path: ${{ steps.composer-cache.outputs.dir }}
26-
key: ${{ runner.os }}-php8.4-composer-${{ hashFiles('**/composer.json') }}
26+
key: ${{ runner.os }}-php8.5-composer-${{ hashFiles('**/composer.json') }}
2727
restore-keys: |
28-
${{ runner.os }}-php8.4-composer-
28+
${{ runner.os }}-php8.5-composer-
2929
3030
- run: composer install --prefer-dist --no-progress --no-suggest
3131
- run: vendor/bin/phpunit --coverage-clover build/logs/clover.xml

0 commit comments

Comments
 (0)