Skip to content

Commit f632379

Browse files
committed
🍿 ci: removing extra params from composer install.
1 parent 173ce25 commit f632379

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/unit-tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout code
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v3
11+
1112
- name: Build
1213
run: cp -rf backend/docker/Dockerfile . && docker build -t hyperf .
14+
1315
- name: Copy .env
1416
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
17+
1518
- name: Install Dependencies
16-
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
19+
run: composer install
20+
1721
- name: Run Unit Tests
1822
run: composer test

0 commit comments

Comments
 (0)