Skip to content

Commit

Permalink
chore: fixes exclude key and add fail-fast
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Dec 4, 2023
1 parent 0528fec commit fb7340b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:

runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
dependency-version: [prefer-lowest, prefer-stable]

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
exclude:
- php: '8.1'
symfony: '7.0'

name: PHP ${{ matrix.php }} - Symfony ${{ matrix.symfony }} - ${{ matrix.os }} - ${{ matrix.dependency_version }}

Expand Down

0 comments on commit fb7340b

Please sign in to comment.