From 26e98d18729a3f3992c49fd8979b22e436d59882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Mom=C4=8Dilovi=C4=87?= Date: Sun, 27 Oct 2024 20:42:42 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=99=82=EF=B8=8Ffix(work?= =?UTF-8?q?flow):=20update=20laravel=20test=20to=20match=20changed=20way?= =?UTF-8?q?=20of=20testing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/laravel-test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/laravel-test.yml b/.github/workflows/laravel-test.yml index f303c5c..7a49965 100644 --- a/.github/workflows/laravel-test.yml +++ b/.github/workflows/laravel-test.yml @@ -49,7 +49,9 @@ jobs: php artisan db:seed - name: Execute tests (Unit and Feature tests) via PHPUnit/Pest - run: php artisan test + run: | + touch database/testing.sqlite + php artisan test - name: Run Pint run: composer exec pint