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"