chore: fixes exclude key and add fail-fast

This commit is contained in:
Nuno Maduro
2023-12-04 11:02:41 +00:00
parent 0528fec083
commit fb7340b556
2 changed files with 5 additions and 3 deletions

View File

@ -13,6 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
dependency-version: [prefer-lowest, prefer-stable]

View File

@ -12,14 +12,15 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
symfony: ['6.0', '7.0']
php: ['8.1', '8.2', '8.3']
dependency_version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
symfony: 7.0
- php: '8.1'
symfony: '7.0'
name: PHP ${{ matrix.php }} - Symfony ${{ matrix.symfony }} - ${{ matrix.os }} - ${{ matrix.dependency_version }}