From 36e092f61e339df1ac73916eb103d566464d2beb Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sat, 30 Nov 2024 22:22:31 +0100 Subject: [PATCH] Try this --- .github/workflows/test-requirements-check.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-requirements-check.yml b/.github/workflows/test-requirements-check.yml index 30e74e2be8..58b72fbf1b 100644 --- a/.github/workflows/test-requirements-check.yml +++ b/.github/workflows/test-requirements-check.yml @@ -90,9 +90,6 @@ jobs: id: set-matrix run: echo "MATRIX=$(php scripts/get-requirements-check-matrix.php)" >> "$GITHUB_OUTPUT" - - name: Debug - run: echo ${{ steps.set-matrix.outputs.MATRIX }} - test-plain: needs: prepare-matrix @@ -100,7 +97,7 @@ jobs: fail-fast: false matrix: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }} - name: "Plain: ${{ matrix.cmd }} PHP ${{ matrix.php }} (${{ matrix.os == 'ubuntu-latest' && 'nix' || 'Win' }}) ${{ matrix.name }}" + name: "Plain: ${{ matrix.cmd == 'phpcs' && 'cs' || 'cbf' }} / ${{ matrix.php }} / ${{ matrix.name }} (${{ matrix.os == 'ubuntu-latest' && 'nix' || 'Win' }})" continue-on-error: ${{ matrix.php == 'nightly' }} @@ -151,7 +148,7 @@ jobs: fail-fast: false matrix: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }} - name: "PHAR: ${{ matrix.cmd }} PHP ${{ matrix.php }} (${{ matrix.os == 'ubuntu-latest' && 'nix' || 'Win' }}) ${{ matrix.name }}" + name: "PHAR: ${{ matrix.cmd == 'phpcs' && 'cs' || 'cbf' }} / ${{ matrix.php }} / ${{ matrix.name }} (${{ matrix.os == 'ubuntu-latest' && 'nix' || 'Win' }})" continue-on-error: ${{ matrix.php == 'nightly' }}