From d77c637570d627839db8faec50f604633ec90f9c Mon Sep 17 00:00:00 2001 From: jrfnl Date: Wed, 11 Sep 2024 09:52:15 +0200 Subject: [PATCH] This should be better... --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0c633811b..62b42b2a7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -117,7 +117,7 @@ jobs: coverage: false experimental: true - name: "Test: PHP ${{ matrix.php }} - ${{ matrix.extensions == 'mbstring' && 'no extensions' || 'all extensions' }}" + name: "Test: PHP ${{ matrix.php }}, ${{ matrix.extensions }}" continue-on-error: ${{ matrix.experimental }} @@ -168,7 +168,7 @@ jobs: if: ${{ matrix.php != '8.4' }} uses: "ramsey/composer-install@v3" with: - composer-options: --no-dev + composer-options: ${{ matrix.extensions != 'optimal' && '--no-dev' || '' }} # Bust the cache at least once a month - output format: YYYY-MM. custom-cache-suffix: $(date -u "+%Y-%m") @@ -176,7 +176,7 @@ jobs: if: ${{ matrix.php == '8.4' }} uses: "ramsey/composer-install@v3" with: - composer-options: --no-dev --ignore-platform-reqs + composer-options: ${{ matrix.extensions != 'optimal' && '--no-dev' || '' }} --ignore-platform-reqs # Bust the cache at least once a month - output format: YYYY-MM. custom-cache-suffix: $(date -u "+%Y-%m")