From e341855c9930d334674e8bcc4ffc08eb2a435f73 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 2 Jun 2025 21:32:30 -0600 Subject: [PATCH] Update laravel.yml --- .github/workflows/laravel.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index ca7bb05b2..4ba3047bf 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -64,10 +64,10 @@ jobs: - name: Create test output directory run: mkdir -p tests/_output - - name: Run tests with PHPUnit - run: vendor/bin/phpunit --log-junit tests/_output/junit.xml - env: - DB_CONNECTION: sqlite + - name: Run tests + run: | + php artisan test --env=testing --log-junit=tests/_output/junit.xml + continue-on-error: false - name: Upload test results if: always() @@ -75,6 +75,7 @@ jobs: with: name: test-results path: tests/_output/junit.xml + if-no-files-found: warn retention-days: 7 - name: Upload Laravel logs