@@ -28,10 +28,10 @@ jobs:
28
28
29
29
strategy :
30
30
matrix :
31
- php : ['5.4', 'latest', '8.4 ']
31
+ php : ['5.4', 'latest', '8.5 ']
32
32
33
33
name : " Lint: PHP ${{ matrix.php }}"
34
- continue-on-error : ${{ matrix.php == '8.4 ' }}
34
+ continue-on-error : ${{ matrix.php == '8.5 ' }}
35
35
36
36
steps :
37
37
- name : Checkout code
67
67
# - PHPCS will run without errors on PHP 5.4 - 7.4 on any supported version.
68
68
# - PHP 8.0 needs PHPCS 3.5.7+ to run without errors, and we require a higher minimum version.
69
69
# - 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).
70
+ # - PHP 8.2, 8.3 and 8.4 need PHPCS 3.8.0+ to run without errors (though the errors don't affect the tests).
71
71
matrix :
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']
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', '8.4' ]
73
73
dependencies : ['lowest', 'stable']
74
74
75
75
include :
@@ -80,16 +80,16 @@ jobs:
80
80
dependencies : ' dev'
81
81
- php : ' 7.4'
82
82
dependencies : ' dev'
83
- - php : ' 8.3 '
83
+ - php : ' 8.4 '
84
84
dependencies : ' dev'
85
85
86
86
# Test against upcoming PHP version.
87
- - php : ' 8.4 '
87
+ - php : ' 8.5 '
88
88
dependencies : ' dev'
89
89
90
90
name : " Test: PHP ${{ matrix.php }} - PHPCS ${{ matrix.dependencies }}"
91
91
92
- continue-on-error : ${{ matrix.php == '8.4 ' }}
92
+ continue-on-error : ${{ matrix.php == '8.5 ' }}
93
93
94
94
steps :
95
95
- name : Checkout code
0 commit comments