Skip to content

Commit

Permalink
Restore Firebird tests
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Aug 25, 2024
1 parent 7b4d2c2 commit ac9289e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ 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
exclude:
- php: 8.4
database: oracle
- php: 8.4
database: firebird
include:
- php: 8.3
release: stable
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 ac9289e

Please sign in to comment.