Skip to content

Commit

Permalink
Add PHP 8.2 and Drupal 10.2 to testing matrix. (#75)
Browse files Browse the repository at this point in the history
* Add PHP 8.2 and Drupal 10.2 to testing matrix.
* Use `name` key when defining test type.
  • Loading branch information
rosiel authored Oct 25, 2023
1 parent fa8d2ea commit 4f8fc59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-3.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ["8.1"]
drupal-version: ["10.0.x", "10.1.x-dev"]
php-versions: ["8.1", "8.2"]
drupal-version: ["10.0.x", "10.1.x", "10.2.x-dev"]

env:
DRUPAL_VERSION: ${{ matrix.drupal-version }}
Expand Down
2 changes: 1 addition & 1 deletion tests/src/Functional/JsonldContextGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function setUp() : void {
// Create a test content type.
$test_type = $this->container->get('entity_type.manager')->getStorage('node_type')->create([
'type' => 'test_type',
'label' => 'Test Type',
'name' => 'Test Type',
]);
$test_type->save();

Expand Down

0 comments on commit 4f8fc59

Please sign in to comment.