Skip to content

Commit

Permalink
firebird-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Aug 21, 2024
1 parent 7b4d2c2 commit 98d26a6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
php: [ 8.4, 8.3, 8.2 ]
database: [ mysql, mariadb, pgsql, sqlite, sqlsrv, singlestore, oracle ] # TODO[L11]: firebird
database: [ mysql, mariadb, pgsql, sqlite, sqlsrv, singlestore, oracle, firebird ]
release: [ stable, lowest ]
exclude: # TODO
- php: 8.4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Static Analysis

on: workflow_dispatch # TODO[L11]: [ push, pull_request ]
on: [ push, pull_request ]

jobs:
phpstan:
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"illuminate/database": "^11.0"
},
"require-dev": {
"harrygulliford/laravel-firebird": "dev-laravel-11.x",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0",
Expand Down
1 change: 0 additions & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ protected function getEnvironmentSetUp($app)

protected function getPackageProviders($app)
{
return [Oci8ServiceProvider::class, SingleStoreProvider::class]; // TODO[L11]
return [Oci8ServiceProvider::class, SingleStoreProvider::class, FirebirdServiceProvider::class];
}
}

0 comments on commit 98d26a6

Please sign in to comment.