Skip to content

Commit 5aef544

Browse files
committed
fix merge action
1 parent 50d12a6 commit 5aef544

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/master.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,15 @@ jobs:
2525
tools: composer:v2
2626
coverage: xdebug
2727

28-
- name: Install dependencies
29-
if: steps.composer-cache.outputs.cache-hit != 'true'
28+
- name: Composer Check
29+
run: composer validate
30+
31+
- name: Install
3032
run: |
31-
composer self-update
32-
composer validate
33-
composer install --prefer-dist --no-progress
33+
composer install --prefer-dist --no-interaction --no-progress
34+
cp config/.env.example config/.env
35+
cp config/app_local.example.php config/app_local.php
36+
3437
- name: Coverage Report
3538
env:
3639
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)