From 6110f5be409ec3783eae715efaecb4a442dfe9f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Thu, 7 Dec 2023 00:41:07 +0100 Subject: [PATCH] Added an workaround to github CI issue. setup php action has php-psr ext enabled somehow, which causes trouble. --- .github/workflows/static_analysis.yml | 2 +- .github/workflows/tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml index 0a027e3c..6d356a75 100644 --- a/.github/workflows/static_analysis.yml +++ b/.github/workflows/static_analysis.yml @@ -24,7 +24,7 @@ jobs: php-version: '8.2' coverage: none ini-values: xdebug.max_nesting_level=1000 - extensions: mbstring, intl, gd, xsl, gmp, bcmath + extensions: mbstring, intl, gd, xsl, gmp, bcmath, :php-psr - name: Get Composer Cache Directory id: composer-cache diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e062f169..e19f7538 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -45,7 +45,7 @@ jobs: php-version: ${{ matrix.php-versions }} coverage: pcov ini-values: xdebug.max_nesting_level=1000 - extensions: mbstring, intl, gd, xsl, gmp, bcmath + extensions: mbstring, intl, gd, xsl, gmp, bcmath, :php-psr - name: Start MySQL run: sudo systemctl start mysql.service