You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
I had set a test on laravel-9 branch. This is based on reusable action base-test.yml and input laravel-version parameter. That will make action run composer require laravel/framework ^{laravel-version} before testing and sure dependency is for specific Laravel version.
This way seem work at Laravel 8 (log), but failed at 9 (log). I'm not sure what happen in. Any idea?
• Hms5232\LaravelTwinCache\Tests\TwinStoreTest > get twin
InvalidArgumentException
Driver [twin] is not supported.
at vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:109
105▕
106▕ if (method_exists($this, $driverMethod)) {
107▕ return $this->{$driverMethod}($config);
108▕ } else {
➜ 109▕ throw new InvalidArgumentException("Driver [{$config['driver']}] is not supported.");
110▕ }
111▕ }
112▕ }
113▕
The text was updated successfully, but these errors were encountered:
I had set a test on
laravel-9
branch. This is based on reusable actionbase-test.yml
and inputlaravel-version
parameter. That will make action runcomposer require laravel/framework ^{laravel-version}
before testing and sure dependency is for specific Laravel version.This way seem work at Laravel 8 (log), but failed at 9 (log). I'm not sure what happen in. Any idea?
The text was updated successfully, but these errors were encountered: