Skip to content

Commit

Permalink
limit test versions for php compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
cdr0y committed Sep 19, 2024
1 parent 9fe4146 commit 1834a6b
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,22 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.0", 8.1, 8.2, 8.3]
illuminate: [9, 10, 11]
include:
# Laravel 9
- php: '8.0'
illuminate: 9
- php: '8.1'
illuminate: 9
# Laravel 10
- php: '8.1'
illuminate: 10
- php: '8.2'
illuminate: 10
# Laravel 11
- php: '8.2'
illuminate: 11
- php: '8.3'
illuminate: 11

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 1834a6b

Please sign in to comment.