Skip to content

Commit

Permalink
improve matrix name
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaicher committed Jan 23, 2024
1 parent 26f3870 commit 6543c1b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 6543c1b

Please sign in to comment.