Skip to content

Commit 01e8988

Browse files
committed
s2
1 parent d6cf420 commit 01e8988

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.circleci/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ jobs:
121121
- image: cimg/php:8.2-browsers
122122
environment:
123123
DRUPAL_VERSION: 10.4@beta
124+
CI_PHPSTAN_IGNORE_FAILURE: 1 # PHPStan levels for canary releases are not the same as for this project.
124125
<<: *job-test
125126

126127
test-php-8.3-d10-legacy:
@@ -145,6 +146,7 @@ jobs:
145146
- image: cimg/php:8.3-browsers
146147
environment:
147148
DRUPAL_VERSION: 10.4@beta
149+
CI_PHPSTAN_IGNORE_FAILURE: 1 # PHPStan levels for canary releases are not the same as for this project.
148150
<<: *job-test
149151

150152
test-php-8.4-d10-legacy:
@@ -169,6 +171,7 @@ jobs:
169171
- image: cimg/php:8.3-browsers # PHP 8.4 is not available yet.
170172
environment:
171173
DRUPAL_VERSION: 10.4@beta
174+
CI_PHPSTAN_IGNORE_FAILURE: 1 # PHPStan levels for canary releases are not the same as for this project.
172175
<<: *job-test
173176

174177
test-php-8.3-d11-legacy:
@@ -193,6 +196,7 @@ jobs:
193196
- image: cimg/php:8.3-browsers
194197
environment:
195198
DRUPAL_VERSION: 11@beta
199+
CI_PHPSTAN_IGNORE_FAILURE: 1 # PHPStan levels for canary releases are not the same as for this project.
196200
<<: *job-test
197201

198202
test-php-8.4-d11-legacy:
@@ -217,6 +221,7 @@ jobs:
217221
- image: cimg/php:8.3-browsers # PHP 8.4 is not available yet.
218222
environment:
219223
DRUPAL_VERSION: 11@beta
224+
CI_PHPSTAN_IGNORE_FAILURE: 1 # PHPStan levels for canary releases are not the same as for this project.
220225
<<: *job-test
221226

222227
deploy:

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,17 +125,15 @@ jobs:
125125
- name: Lint code with PHPCS
126126
working-directory: build
127127
run: vendor/bin/phpcs || [ "${CI_PHPCS_IGNORE_FAILURE:-0}" -eq 1 ]
128-
continue-on-error: ${{ matrix.stability == 'canary' }}
129128

130129
- name: Lint code with PHPStan
131130
working-directory: build
132131
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.
134133

135134
- name: Lint code with Rector
136135
working-directory: build
137136
run: vendor/bin/rector --clear-cache --dry-run || [ "${CI_RECTOR_IGNORE_FAILURE:-0}" -eq 1 ]
138-
continue-on-error: ${{ matrix.stability == 'canary' }}
139137

140138
- name: Lint code with PHPMD
141139
working-directory: build

0 commit comments

Comments
 (0)