From 73cbaaf9f1bbd4a3da44a5879e7a1826051e43d9 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 13 May 2020 17:19:56 +0100 Subject: [PATCH] Force colors for PHPUnit tests in GitHub Actions --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b8f818..1379a05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: if: matrix.test-types == 'functional' - name: Execute tests - run: vendor/bin/phpunit --testsuite=${{ matrix.test-types }} + run: vendor/bin/phpunit --colors=always --testsuite=${{ matrix.test-types }} env: SIMPLETEST_BASE_URL: http://localhost:8000