From 6543c1bddcd91dd28ecbe680d46aee1faf2a6324 Mon Sep 17 00:00:00 2001 From: David Maicher Date: Tue, 23 Jan 2024 14:51:38 +0100 Subject: [PATCH] improve matrix name --- .github/workflows/test.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4d9a56d6..cd622bc4 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -18,7 +18,7 @@ permissions: jobs: test: - name: PHP ${{ matrix.php-version }} + ${{ matrix.dependencies }} + ${{ matrix.variant }} + name: PHP ${{ matrix.php-version }} + ${{ matrix.dependencies }} + ${{ matrix.variant }} + ${{ matrix.stability }} runs-on: ubuntu-latest @@ -43,14 +43,16 @@ jobs: allowed-to-fail: [false] symfony-require: [''] variant: [normal] - stability: [''] + stability: [stable] include: - php-version: '8.0' dependencies: lowest allowed-to-fail: false variant: normal - php-version: '8.3' + dependencies: highest allowed-to-fail: true + variant: normal stability: dev steps: @@ -75,7 +77,7 @@ jobs: composer global require --no-progress --no-scripts --no-plugins symfony/flex - name: Configure Composer minimum stability - if: matrix.stability + if: matrix.stability && matrix.stability != 'stable' run: composer config minimum-stability ${{ matrix.stability }} - name: Install variant