File tree 3 files changed +8
-6
lines changed
3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 66
66
verify :
67
67
name : Validate binary on PHP ${{ matrix.php }}
68
68
runs-on : ubuntu-latest
69
- continue-on-error : ${{ matrix.php == '8.4 ' }}
69
+ continue-on-error : ${{ matrix.php == '8.5 ' }}
70
70
needs :
71
71
- bundle
72
72
87
87
- ' 8.2'
88
88
- ' 8.3'
89
89
- ' 8.4'
90
+ - ' 8.5'
90
91
91
92
steps :
92
93
- name : Checkout code
Original file line number Diff line number Diff line change 93
93
test :
94
94
name : Run tests on PHP ${{ matrix.php }}
95
95
runs-on : ubuntu-latest
96
- continue-on-error : ${{ matrix.php == '8.4 ' }}
96
+ continue-on-error : ${{ matrix.php == '8.5 ' }}
97
97
needs :
98
98
- bundle
99
99
@@ -114,6 +114,7 @@ jobs:
114
114
- ' 8.2'
115
115
- ' 8.3'
116
116
- ' 8.4'
117
+ - ' 8.5'
117
118
118
119
steps :
119
120
- name : Checkout code
@@ -132,14 +133,14 @@ jobs:
132
133
run : composer remove --dev php-parallel-lint/php-code-style --no-update --no-interaction
133
134
134
135
- name : Install Composer dependencies
135
- if : ${{ matrix.php != '8.4 ' }}
136
+ if : ${{ matrix.php != '8.5 ' }}
136
137
uses : ramsey/composer-install@v3
137
138
with :
138
139
# Bust the cache at least once a month - output format: YYYY-MM.
139
140
custom-cache-suffix : $(date -u "+%Y-%m")
140
141
141
- - name : " Install Composer dependencies (PHP 8.4 , ignore PHP reqs)"
142
- if : ${{ matrix.php == '8.4 ' }}
142
+ - name : " Install Composer dependencies (PHP nightly , ignore PHP reqs)"
143
+ if : ${{ matrix.php == '8.5 ' }}
143
144
uses : ramsey/composer-install@v3
144
145
with :
145
146
composer-options : --ignore-platform-req=php
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Additionally `blame` can be used to show commits that introduced the breakage.
10
10
11
11
Running parallel jobs in PHP is inspired by Nette framework tests.
12
12
13
- The application is officially supported for use with PHP 5.3 to 8.3 .
13
+ The application is officially supported for use with PHP 5.3 to 8.4 .
14
14
15
15
## Table of contents
16
16
You can’t perform that action at this time.
0 commit comments