From 630807ebad5464793411389e5cf5428f9c633332 Mon Sep 17 00:00:00 2001 From: A1Gard Date: Fri, 7 Jul 2023 06:45:31 +0330 Subject: [PATCH] fixed test --- .env.example | 6 +++--- .github/workflows/laravel.yml | 13 ++++--------- 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/.env.example b/.env.example index 4acf796..c6a6c06 100755 --- a/.env.example +++ b/.env.example @@ -11,9 +11,9 @@ LOG_LEVEL=debug DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 -DB_DATABASE=laravel -DB_USERNAME=root -DB_PASSWORD= +DB_DATABASE=test_db +DB_USERNAME=user +DB_PASSWORD=secret BROADCAST_DRIVER=log CACHE_DRIVER=file diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 2cc1c04..ffb8dd9 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -32,7 +32,7 @@ jobs: sudo apt-get install -y mysql-client mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -uuser -psecret -e "SHOW DATABASES" - name: Copy .env - run: php -r "file_exists('.env') || copy('.env.github', '.env');" + run: php -r "file_exists('.env') || copy('.env.example', '.env');" - name: Install Dependencies run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist @@ -40,16 +40,11 @@ jobs: - name: Directory Permissions run: chmod -R 777 storage bootstrap/cache - - name: Execute tests (Unit and Feature tests) via PHPUnit - env: - MYSQL_DATABASE: test_db - DB_USERNAME: user - DB_PASSWORD: secret - DB_PORT: ${{ job.services.mysql.ports[3306] }} + - name: Key generate run: php artisan key:generate - + - name: Database seeder test run: php artisan migrate:fresh --seed - + - name : Developer test run: php artisan tes