From ee6948aea207c5264b6cc70fa18f84f9d0d07640 Mon Sep 17 00:00:00 2001 From: danielhe4rt Date: Sat, 3 Feb 2024 17:14:06 -0300 Subject: [PATCH] fix(tests): using artisan to run tests --- .github/workflows/laravel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 5fb4b9b..c6dd85c 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -30,5 +30,5 @@ jobs: cp .env.ci .env php artisan key:generate - - name: Run Testsuite - run: vendor/bin/phpunit tests/ + - name: Run Test Suites + run: php artisan test