From eab0f935132c27447731a92fde496d5fa48ee4bf Mon Sep 17 00:00:00 2001 From: William Desportes Date: Sun, 12 Sep 2021 08:19:18 +0200 Subject: [PATCH] Add required extensions for phpunit and phpcs to work on CI Signed-off-by: William Desportes --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 92e2f91a0..da368a15a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,8 +30,9 @@ jobs: php-version: ${{ matrix.php-version }} # phar, json and curl are used by composer # json is used by testing code - # tokenizer is used by phpcs - extensions: none, mbstring, phar, json, tokenizer + # dom, json, mbstring, libxml, xml, xmlwriter are used by phpunit + # tokenizer, xmlwriter and simplexml are used by phpcs + extensions: none, mbstring, phar, json, curl, tokenizer, xml, xmlwriter, simplexml, libxml, dom coverage: xdebug - name: Get Composer Cache Directory id: composer-cache