Skip to content

Commit

Permalink
try with exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
cdr0y committed Sep 19, 2024
1 parent 1834a6b commit 08abf12
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,25 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
# Laravel 9
- php: '8.0'
php: ['8.0', '8.1', '8.2', '8.3']
illuminate: [9, 10, 11]
exclude:
# Exclude incompatible PHP versions for Laravel 9
- php: '8.2'
illuminate: 9
- php: '8.1'
- php: '8.3'
illuminate: 9
# Laravel 10
- php: '8.1'

# Exclude incompatible PHP versions for Laravel 10
- php: '8.0'
illuminate: 10
- php: '8.2'
- php: '8.3'
illuminate: 10
# Laravel 11
- php: '8.2'

# Exclude incompatible PHP versions for Laravel 11
- php: '8.0'
illuminate: 11
- php: '8.3'
- php: '8.1'
illuminate: 11

steps:
Expand Down

0 comments on commit 08abf12

Please sign in to comment.