From 61c5f4ade56a575c93564275c2fe754cabeb9a05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 27 Feb 2024 16:52:14 +0100 Subject: [PATCH] Enhancement: Use --ansi and --colors options --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index cdf5781..cb56d11 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -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"