1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 11:14:04 +00:00

Remove Laravel 10 from CI matrix

This commit is contained in:
Samuel Štancl 2024-03-12 16:16:52 +01:00
parent d6b5a6ab6c
commit ce8e74e978
3 changed files with 6 additions and 9 deletions

View file

@ -161,8 +161,7 @@ test('the tenants migrate command uses the schema dump correctly', function (boo
// Were created in the tenant database
expect(Schema::hasTable('example'))->toBeTrue();
expect(Schema::hasTable('users'))->toBeTrue();
})->with([true, false])
->skip(fn () => str(app()->version())->startsWith('10.'), 'todo@l10 drop laravel 10 support before release');
})->with([true, false]);
test('dump command works', function () {
$tenant = Tenant::create();