Skip to content

Commit

Permalink
Enhancement: Use --ansi and --colors options
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Feb 27, 2024
1 parent ad9a7a0 commit 61c5f4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
php-version: "${{ matrix.php-version }}'"

- name: "Validate composer.json and composer.lock"
run: "composer validate"
run: "composer validate --ansi"

- name: "Install dependencies with composer"
run: "composer install --prefer-dist --no-progress --no-suggest"
run: "composer install --ansi --prefer-dist --no-progress --no-suggest"

- name: "Run tests with phpunit/phpunit"
run: "vendor/bin/phpunit --configuration=tests/build.xml"
run: "vendor/bin/phpunit --colors=always --configuration=tests/build.xml"

0 comments on commit 61c5f4a

Please sign in to comment.