From 802896a1353edd0c3e2b3deae6ba75454d7172e0 Mon Sep 17 00:00:00 2001 From: A1Gard Date: Tue, 24 Sep 2024 23:04:15 +0330 Subject: [PATCH] fixed test unit --- .github/workflows/laravel.yml | 2 ++ app/Console/Kernel.php | 32 -------------------------------- 2 files changed, 2 insertions(+), 32 deletions(-) delete mode 100644 app/Console/Kernel.php diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 42736d9..485c35a 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -2,6 +2,8 @@ name: Laravel on: push: + tags: + - "*" branches: [ "master" ] pull_request: branches: [ "master" ] diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php deleted file mode 100644 index d8bc1d2..0000000 --- a/app/Console/Kernel.php +++ /dev/null @@ -1,32 +0,0 @@ -command('inspire')->hourly(); - } - - /** - * Register the commands for the application. - * - * @return void - */ - protected function commands() - { - $this->load(__DIR__.'/Commands'); - - require base_path('routes/console.php'); - } -}