Skip to content

Commit 1acce38

Browse files
authored
test: amend run-tests.yml
* remove `prefer-lowest` stability
1 parent 3da82a6 commit 1acce38

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
os: [ubuntu-latest, windows-latest]
2020
php: [8.3, 8.2]
2121
laravel: [11.*, 10.*]
22-
stability: [prefer-lowest, prefer-stable]
22+
stability: [prefer-stable]
2323
include:
2424
- laravel: 11.*
2525
testbench: 9.*

tests/TestCase.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
use Illuminate\Database\Eloquent\Factories\Factory;
77
use Illuminate\Database\Migrations\Migration;
88
use Illuminate\Database\Schema\Blueprint;
9-
use Illuminate\Foundation\Testing\DatabaseMigrations;
9+
use Illuminate\Foundation\Testing\RefreshDatabase;
1010
use Illuminate\Support\Facades\Schema;
1111
use NadLambino\Uploadable\UploadableServiceProvider;
1212
use Orchestra\Testbench\TestCase as Orchestra;
1313

1414
class TestCase extends Orchestra
1515
{
16-
use DatabaseMigrations;
16+
use RefreshDatabase;
1717

1818
protected function setUp(): void
1919
{

0 commit comments

Comments
 (0)