Skip to content

Commit

Permalink
Add Drupal 10.3 to testing matrix (#4263)
Browse files Browse the repository at this point in the history
  • Loading branch information
dafeder authored Aug 21, 2024
1 parent af1f25e commit b668ef3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,12 @@ workflows:
report_coverage: true
matrix:
parameters:
dkan_recommended_branch: [ '10.2.x-dev']
dkan_recommended_branch: ['10.2.x-dev']
php_version: [ '8.3' ]
- phpunit:
matrix:
parameters:
dkan_recommended_branch: [ '10.3.x-dev']
php_version: [ '8.3' ]
- phpunit:
matrix:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Drupal\Core\Entity\EntityTypeRepository;
use Drupal\Core\Logger\LoggerChannelFactory;
use Drupal\Core\Logger\LoggerChannelInterface;

use Drupal\Core\Session\AccountProxy;
use Drupal\dkan_js_frontend\Routing\RouteProvider;
use Drupal\metastore\MetastoreService;

Expand Down Expand Up @@ -51,6 +51,7 @@ public function testSitemapStaticLinks(): void {
->add('logger.factory', LoggerChannelFactory::class)
->add('request_stack', RequestStack::class)
->add('simple_sitemap.settings', SimpleSitemapSettingsInterface::class)
->add('current_user', AccountProxy::class)
->index(0);
$container = (new Chain($this))
->add(Container::class, 'get', $containerOptions)
Expand Down

0 comments on commit b668ef3

Please sign in to comment.