Skip to content

Commit b420627

Browse files
authored
[11.x] Test Improvements (#49352)
* [11.x] Test Improvements Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> --------- Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 02f3144 commit b420627

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/queues.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup PHP
2626
uses: shivammathur/setup-php@v2
2727
with:
28-
php-version: 8.1
28+
php-version: 8.2
2929
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, pdo_mysql, :php-psr
3030
tools: composer:v2
3131
coverage: none
@@ -59,7 +59,7 @@ jobs:
5959
- name: Setup PHP
6060
uses: shivammathur/setup-php@v2
6161
with:
62-
php-version: 8.1
62+
php-version: 8.2
6363
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, pdo_mysql, :php-psr
6464
tools: composer:v2
6565
coverage: none
@@ -101,7 +101,7 @@ jobs:
101101
- name: Setup PHP
102102
uses: shivammathur/setup-php@v2
103103
with:
104-
php-version: 8.1
104+
php-version: 8.2
105105
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, pdo_mysql, :php-psr
106106
tools: composer:v2
107107
coverage: none
@@ -139,7 +139,7 @@ jobs:
139139
- name: Setup PHP
140140
uses: shivammathur/setup-php@v2
141141
with:
142-
php-version: 8.1
142+
php-version: 8.2
143143
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, pdo_mysql, :php-psr
144144
tools: composer:v2
145145
coverage: none

tests/Integration/Queue/JobChainingTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
use Illuminate\Support\Facades\Queue;
1616
use Orchestra\Testbench\Attributes\WithMigration;
1717

18+
#[WithMigration]
1819
#[WithMigration('queue')]
1920
class JobChainingTest extends QueueTestCase
2021
{

tests/Integration/Queue/JobDispatchingTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
use Illuminate\Queue\InteractsWithQueue;
1111
use Orchestra\Testbench\Attributes\WithMigration;
1212

13+
#[WithMigration]
1314
#[WithMigration('queue')]
1415
class JobDispatchingTest extends QueueTestCase
1516
{

0 commit comments

Comments
 (0)