We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d26acc commit ecdc3efCopy full SHA for ecdc3ef
.github/workflows/ci.yml
@@ -5,8 +5,8 @@ jobs:
5
name: phpList on PHP ${{ matrix.php-versions }} [Build, Test]
6
runs-on: ubuntu-22.04
7
env:
8
- DB_DATABASE: phplist
9
- DB_USERNAME: root
+ DB_DATABASE: phplist_db_test
+ DB_USERNAME: phplist
10
DB_PASSWORD: phplist
11
BROADCAST_DRIVER: log
12
services:
config/config_test.yml
@@ -11,8 +11,12 @@ framework:
doctrine:
13
dbal:
14
- driver: 'pdo_sqlite'
15
- memory: true
+ driver: 'pdo_mysql'
+ host: 'localhost'
16
+ port: '3306'
17
+ dbname: 'phplist_db_test'
18
+ user: '%database_user%'
19
+ password: '%database_password%'
20
charset: UTF8
21
# orm:
22
# entity_managers:
0 commit comments