18
18
19
19
strategy :
20
20
matrix :
21
- php : ['5.3', '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']
21
+ php : ['5.3', '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', '8.5' ]
22
22
23
- continue-on-error : ${{ matrix.php == '8.4 ' }}
23
+ continue-on-error : ${{ matrix.php == '8.5 ' }}
24
24
25
25
name : " Test: PHP ${{ matrix.php }}"
26
26
43
43
44
44
strategy :
45
45
matrix :
46
- php : ['5.3', '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']
46
+ php : ['5.3', '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', '8.5' ]
47
47
48
- continue-on-error : ${{ matrix.php == '8.4 ' }}
48
+ continue-on-error : ${{ matrix.php == '8.5 ' }}
49
49
50
50
name : " Unit Test: PHP ${{ matrix.php }}"
51
51
@@ -63,14 +63,14 @@ jobs:
63
63
# Install dependencies and handle caching in one go.
64
64
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
65
65
- name : Install Composer dependencies - normal
66
- if : ${{ matrix.php != '8.4 ' }}
66
+ if : ${{ matrix.php != '8.5 ' }}
67
67
uses : " ramsey/composer-install@v3"
68
68
with :
69
69
# Bust the cache at least once a month - output format: YYYY-MM.
70
70
custom-cache-suffix : $(date -u "+%Y-%m")
71
71
72
72
- name : Install Composer dependencies - ignore PHP restrictions
73
- if : ${{ matrix.php == '8.4 ' }}
73
+ if : ${{ matrix.php == '8.5 ' }}
74
74
uses : " ramsey/composer-install@v3"
75
75
with :
76
76
composer-options : --ignore-platform-req=php+
0 commit comments