Skip to content

Commit 9215979

Browse files
committed
Start testing PHP 8.4
1 parent 3f04d0e commit 9215979

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/php.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
uses: shivammathur/setup-php@v2
5252
with:
5353
# Should be the higest supported version, so we can use the newest tools
54-
php-version: '8.3'
54+
php-version: '8.4'
5555
tools: composer, composer-require-checker, composer-unused, phpcs
5656
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, soap, spl, xml
5757

@@ -142,7 +142,7 @@ jobs:
142142
fail-fast: false
143143
matrix:
144144
operating-system: [ubuntu-latest]
145-
php-versions: ['8.1', '8.2', '8.3']
145+
php-versions: ['8.1', '8.2', '8.3', '8.4']
146146

147147
steps:
148148
- name: Setup PHP, with composer and extensions
@@ -182,15 +182,15 @@ jobs:
182182
run: composer install --no-progress --prefer-dist --optimize-autoloader
183183

184184
- name: Run unit tests with coverage
185-
if: ${{ matrix.php-versions == '8.3' }}
185+
if: ${{ matrix.php-versions == '8.4' }}
186186
run: vendor/bin/phpunit
187187

188188
- name: Run unit tests (no coverage)
189-
if: ${{ matrix.php-versions != '8.3' }}
189+
if: ${{ matrix.php-versions != '8.4' }}
190190
run: vendor/bin/phpunit --no-coverage
191191

192192
- name: Save coverage data
193-
if: ${{ matrix.php-versions == '8.3' }}
193+
if: ${{ matrix.php-versions == '8.4' }}
194194
uses: actions/upload-artifact@v4
195195
with:
196196
name: coverage-data
@@ -204,7 +204,7 @@ jobs:
204204
fail-fast: true
205205
matrix:
206206
operating-system: [windows-latest]
207-
php-versions: ['8.1', '8.2', '8.3']
207+
php-versions: ['8.1', '8.2', '8.3', '8.4']
208208

209209
steps:
210210
- name: Setup PHP, with composer and extensions

0 commit comments

Comments
 (0)