File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ jobs:
121
121
- image : cimg/php:8.2-browsers
122
122
environment :
123
123
DRUPAL_VERSION : 10.4@beta
124
+ CI_PHPSTAN_IGNORE_FAILURE : 1 # PHPStan levels for canary releases are not the same as for this project.
124
125
<< : *job-test
125
126
126
127
test-php-8.3-d10-legacy :
@@ -145,6 +146,7 @@ jobs:
145
146
- image : cimg/php:8.3-browsers
146
147
environment :
147
148
DRUPAL_VERSION : 10.4@beta
149
+ CI_PHPSTAN_IGNORE_FAILURE : 1 # PHPStan levels for canary releases are not the same as for this project.
148
150
<< : *job-test
149
151
150
152
test-php-8.4-d10-legacy :
@@ -169,6 +171,7 @@ jobs:
169
171
- image : cimg/php:8.3-browsers # PHP 8.4 is not available yet.
170
172
environment :
171
173
DRUPAL_VERSION : 10.4@beta
174
+ CI_PHPSTAN_IGNORE_FAILURE : 1 # PHPStan levels for canary releases are not the same as for this project.
172
175
<< : *job-test
173
176
174
177
test-php-8.3-d11-legacy :
@@ -193,6 +196,7 @@ jobs:
193
196
- image : cimg/php:8.3-browsers
194
197
environment :
195
198
DRUPAL_VERSION : 11@beta
199
+ CI_PHPSTAN_IGNORE_FAILURE : 1 # PHPStan levels for canary releases are not the same as for this project.
196
200
<< : *job-test
197
201
198
202
test-php-8.4-d11-legacy :
@@ -217,6 +221,7 @@ jobs:
217
221
- image : cimg/php:8.3-browsers # PHP 8.4 is not available yet.
218
222
environment :
219
223
DRUPAL_VERSION : 11@beta
224
+ CI_PHPSTAN_IGNORE_FAILURE : 1 # PHPStan levels for canary releases are not the same as for this project.
220
225
<< : *job-test
221
226
222
227
deploy :
Original file line number Diff line number Diff line change @@ -125,17 +125,15 @@ jobs:
125
125
- name : Lint code with PHPCS
126
126
working-directory : build
127
127
run : vendor/bin/phpcs || [ "${CI_PHPCS_IGNORE_FAILURE:-0}" -eq 1 ]
128
- continue-on-error : ${{ matrix.stability == 'canary' }}
129
128
130
129
- name : Lint code with PHPStan
131
130
working-directory : build
132
131
run : vendor/bin/phpstan || [ "${CI_PHPSTAN_IGNORE_FAILURE:-0}" -eq 1 ]
133
- continue-on-error : ${{ matrix.stability == 'canary' }}
132
+ continue-on-error : ${{ matrix.stability == 'canary' }} # PHPStan levels for canary releases are not the same as for this project.
134
133
135
134
- name : Lint code with Rector
136
135
working-directory : build
137
136
run : vendor/bin/rector --clear-cache --dry-run || [ "${CI_RECTOR_IGNORE_FAILURE:-0}" -eq 1 ]
138
- continue-on-error : ${{ matrix.stability == 'canary' }}
139
137
140
138
- name : Lint code with PHPMD
141
139
working-directory : build
You can’t perform that action at this time.
0 commit comments