Skip to content

Commit c739b60

Browse files
committed
Work in progress. Needs further testing.
1 parent 3a138f5 commit c739b60

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

.env.ci

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
APP_KEY=
2-
DB_CONNECTION=mysql
2+
DB_CONNECTION=sqlite
33
DB_HOST=127.0.0.1
44
DB_PORT=3306
5-
DB_DATABASE=test
6-
DB_USERNAME=root
7-
DB_PASSWORD=password
5+
DB_DATABASE=:memory"

.github/workflows/ci.yml

+5-10
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,12 @@ jobs:
66
container:
77
image: kirschbaumdevelopment/laravel-test-runner:8.3
88

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-
199
steps:
10+
- uses: actions/setup-sqlite@v1
11+
with:
12+
sqlite-version: 3.40.0
13+
sqlite-year: 2022
14+
2015
- uses: actions/checkout@v1
2116
with:
2217
fetch-depth: 1

0 commit comments

Comments
 (0)