From 1abf6564343bcb25529b97a43792d99e06fc3fc6 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 19 Jan 2025 21:45:17 +1100 Subject: [PATCH] Change startup script for db tests --- .github/workflows/phpunit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 2a3b53adac4..91e7aab9410 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -120,7 +120,7 @@ jobs: - name: Migrate Database run: | - php artisan migrate:fresh --seed --force && php artisan db:seed --force + php artisan migrate:fresh && php artisan db:seed - name: Run Testsuite run: |