Skip to content

Commit 88a55f8

Browse files
authored
Merge pull request #803 from Automattic/feature/ghactions-php-8.3-update
2 parents 64a020c + 4790990 commit 88a55f8

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828

2929
strategy:
3030
matrix:
31-
php: ['5.4', 'latest', '8.3']
31+
php: ['5.4', 'latest', '8.4']
3232

3333
name: "Lint: PHP ${{ matrix.php }}"
34-
continue-on-error: ${{ matrix.php == '8.3' }}
34+
continue-on-error: ${{ matrix.php == '8.4' }}
3535

3636
steps:
3737
- name: Checkout code
@@ -67,8 +67,9 @@ jobs:
6767
# - PHPCS will run without errors on PHP 5.4 - 7.4 on any supported version.
6868
# - PHP 8.0 needs PHPCS 3.5.7+ to run without errors, and we require a higher minimum version.
6969
# - PHP 8.1 needs PHPCS 3.6.1+ to run without errors, but works best with 3.7.1+, and we require at least this minimum version.
70+
# - PHP 8.2 and 8.3 need PHPCS 3.8.0+ to run without errors (though the errors don't affect the tests).
7071
matrix:
71-
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
72+
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
7273
dependencies: ['lowest', 'stable']
7374

7475
include:
@@ -79,16 +80,16 @@ jobs:
7980
dependencies: 'dev'
8081
- php: '7.4'
8182
dependencies: 'dev'
82-
- php: '8.2'
83+
- php: '8.3'
8384
dependencies: 'dev'
8485

8586
# Test against upcoming PHP version.
86-
- php: '8.3'
87+
- php: '8.4'
8788
dependencies: 'dev'
8889

8990
name: "Test: PHP ${{ matrix.php }} - PHPCS ${{ matrix.dependencies }}"
9091

91-
continue-on-error: ${{ matrix.php == '8.3' }}
92+
continue-on-error: ${{ matrix.php == '8.4' }}
9293

9394
steps:
9495
- name: Checkout code

0 commit comments

Comments
 (0)