From 70ae97f6800e506d341bccbc9410ddd5d4ef3c9e Mon Sep 17 00:00:00 2001 From: Thuan Bui <9248622+10h30@users.noreply.github.com> Date: Wed, 2 Apr 2025 10:17:54 +0900 Subject: [PATCH] Fix action build --- .github/workflows/laravel.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index e5dd1db..3bd6b1d 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -17,6 +17,8 @@ jobs: - uses: actions/checkout@v2 - name: Copy .env run: php -r "file_exists('.env') || copy('.env.example', '.env');" + - name: Update Dependencies + run: composer update - name: Install Dependencies run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist - name: Generate key @@ -31,4 +33,4 @@ jobs: env: DB_CONNECTION: sqlite DB_DATABASE: database/database.sqlite - run: vendor/bin/phpunit + run: vendor/bin/phpunit \ No newline at end of file