diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02f4884..84592e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: [ 8.3, 8.2 ] - database: [ mysql, mariadb, pgsql, sqlite, sqlsrv, oracle ] # TODO[L11]: singlestore, firebird + database: [ mysql, mariadb, pgsql, sqlite, sqlsrv, singlestore, oracle ] # TODO[L11]: firebird release: [ stable, lowest ] include: - php: 8.3 diff --git a/composer.json b/composer.json index c2fa02e..f9cf274 100644 --- a/composer.json +++ b/composer.json @@ -16,6 +16,7 @@ "orchestra/testbench": "^9.0", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^10.5", + "singlestoredb/singlestoredb-laravel": "^1.5.4", "yajra/laravel-oci8": "^11.0" }, "autoload": { diff --git a/tests/TestCase.php b/tests/TestCase.php index 1f53d65..c6e1cd5 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -78,7 +78,7 @@ protected function getEnvironmentSetUp($app) protected function getPackageProviders($app) { - return [Oci8ServiceProvider::class]; // TODO[L11] + return [Oci8ServiceProvider::class, SingleStoreProvider::class]; // TODO[L11] return [Oci8ServiceProvider::class, SingleStoreProvider::class, FirebirdServiceProvider::class]; } }