We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bba19a commit 49dc929Copy full SHA for 49dc929
.env.ci
@@ -1,3 +1,7 @@
1
APP_KEY=
2
-DB_CONNECTION=sqlite
3
-DB_DATABASE=:memory:
+DB_CONNECTION=mysql
+DB_HOST=127.0.0.1
4
+DB_PORT=3306
5
+DB_DATABASE=test
6
+DB_USERNAME=root
7
+DB_PASSWORD=password
.github/workflows/ci.yml
@@ -6,6 +6,16 @@ jobs:
container:
image: kirschbaumdevelopment/laravel-test-runner:8.3
8
9
+ services:
10
+ mysql:
11
+ image: mysql:8.0
12
+ env:
13
+ MYSQL_ROOT_PASSWORD: password
14
+ MYSQL_DATABASE: test
15
+ ports:
16
+ - 3306:3306
17
+ options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
18
+
19
steps:
20
- uses: actions/checkout@v3
21
0 commit comments