From 5b2c419e917fc36cf297b7f83d4e881e90954de2 Mon Sep 17 00:00:00 2001 From: Saeed Vaziry Date: Sun, 25 Feb 2024 17:25:25 +0100 Subject: [PATCH] create sqlite database for tests --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cab6151..72cd786 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,5 +35,8 @@ jobs: if: steps.composer-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress --no-suggest + - name: Create sqlite database + run: touch storage/database-test.sqlite + - name: Run test suite run: php artisan test