Skip to content

Commit

Permalink
Remove PHPUnit verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
giggsey committed Jun 10, 2024
1 parent 6cf5e1f commit 9ea3c69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ jobs:
- name: Test with phpunit (with coverage)
id: phpunit-coverage
if: "matrix.coverage == 'coverage'"
run: composer run test -- --verbose ${{ env.COVERAGE_FLAGS }}
run: composer run test -- ${{ env.COVERAGE_FLAGS }}
- name: Test with phpunit (without coverage)
if: "matrix.coverage != 'coverage'"
run: composer run test -- --verbose
run: composer run test --
- name: Submit Coveralls
if: steps.phpunit-coverage.outcome == 'success'
uses: nick-invision/retry@v1
Expand Down

0 comments on commit 9ea3c69

Please sign in to comment.