From 9385b063aebe0583eb8d44beac58b5570b245ea1 Mon Sep 17 00:00:00 2001 From: Alf Drollinger <40421928+adrolli@users.noreply.github.com> Date: Wed, 6 Dec 2023 22:39:46 +0100 Subject: [PATCH] PSR problem fix in pest and cc --- .github/workflows/code-climate.yml | 4 ++++ .github/workflows/pest.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/code-climate.yml b/.github/workflows/code-climate.yml index a8288f478..89b87d371 100644 --- a/.github/workflows/code-climate.yml +++ b/.github/workflows/code-climate.yml @@ -51,6 +51,10 @@ jobs: echo "::add-matcher::${{ runner.tool_cache }}/php.json" echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" + - name: Remove PHP-PSR Extension + run: | + sudo apt remove php8.2-psr + - name: Install dependencies run: | composer update diff --git a/.github/workflows/pest.yml b/.github/workflows/pest.yml index 068cc2e9f..42611f428 100644 --- a/.github/workflows/pest.yml +++ b/.github/workflows/pest.yml @@ -46,6 +46,10 @@ jobs: echo "::add-matcher::${{ runner.tool_cache }}/php.json" echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" + - name: Remove PHP-PSR Extension + run: | + sudo apt remove php8.2-psr + - name: Install dependencies run: | composer update