Skip to content

Commit

Permalink
run CI with PHP 8.4 (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaicher authored Mar 21, 2024
1 parent 46de5bb commit 92c9a38
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
- php: 8.3
stability: dev
test_make_target: test
- php: 8.4
stability: dev
test_make_target: test

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion tests/Functional/app/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ doctrine:
connections:
default:
url: '%database.url%'
server_version: 8.0.31
use_savepoints: true

replica:
url: '%database.url%'
server_version: 8.0.31
use_savepoints: true
replicas:
replica_one:
Expand Down
1 change: 1 addition & 0 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ function bootstrap(): void
$kernel->boot();

$application = new Application($kernel);
$application->setCatchExceptions(false);
$application->setAutoExit(false);

$application->run(new ArrayInput([
Expand Down

0 comments on commit 92c9a38

Please sign in to comment.