From bba82bc75ef338b54625c5fbc5b8d461f2bcf964 Mon Sep 17 00:00:00 2001 From: Daniel Haven <49914607+danielh-official@users.noreply.github.com> Date: Fri, 14 Nov 2025 20:18:39 -0500 Subject: [PATCH] Add application setup step in CI workflow example Added step to set up application environment before running tests in GitHub workflow example. --- continuous-integration.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/continuous-integration.md b/continuous-integration.md index 4f98250..339daaf 100644 --- a/continuous-integration.md +++ b/continuous-integration.md @@ -36,6 +36,9 @@ jobs: - name: Install Dependencies run: composer install --no-interaction --prefer-dist --optimize-autoloader + - name: Setup Application + run: cp .env.example .env && php artisan key:generate + - name: Tests run: ./vendor/bin/pest --ci ```