From 134312c38a6acbe20b44cd6557eaee20f58bf75b Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 4 Apr 2023 22:38:53 +0200 Subject: [PATCH] Move stuff around --- .github/workflows/laravel.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index fe54f77e9..77b0dd6df 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -16,17 +16,16 @@ jobs: extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, bcmath, soap, intl, gd, exif, iconv coverage: none - - name: Copy env file - run: - cp .env.test .env - - - name: Prepare Laravel Application - run: | - cp .env.test .env - php artisan key:generate - - name: Run composer install run: composer install -n --prefer-dist + - name: Copy env file + run: + cp .env.test .env + + - name: Prepare Laravel Application + run: + php artisan key:generate + - name: Run tests run: php artisan test