Skip to content

Commit

Permalink
chore(ci): Update composer command in tests.yml
Browse files Browse the repository at this point in the history
- Update composer command in `.github/workflows/tests.yml` to include `--ansi -v` flags for better verbosity
- Ensure that the `composer update` command runs with the specified `matrix.dependency-version` and other necessary flags
- Add missing newline at the end of the file
  • Loading branch information
guanguans committed Jan 16, 2024
1 parent 7f6209a commit f7893f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
coverage: xdebug

- name: Install dependencies
run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --ansi -v

- name: Execute tests
run: composer test-coverage
Expand All @@ -42,4 +42,4 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)
verbose: true # optional (default = false)

0 comments on commit f7893f5

Please sign in to comment.