Skip to content

Commit

Permalink
Added PHP 8.4 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet committed Nov 12, 2024
1 parent e8802a5 commit 66ab6fc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/run-stub-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-22.04, windows-latest]
php: [8.3, 8.2]
php: [8.4, 8.3, 8.2]
laravel: [11.0, 10.2]
exclude:
- php: 8.4
laravel: 10.0

name: Test Stubs ${{ matrix.os }} - P${{ matrix.php }} - L${{ matrix.laravel }}

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/run-table-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.3, 8.2]
php: [8.4, 8.3, 8.2]
laravel: [11.0, 10.0]
db: [mysql, postgres, sqlite]
ssr: [true, false]
Expand All @@ -21,6 +21,8 @@ jobs:
exclude:
- dependency-version: prefer-lowest
ssr: true
- php: 8.3
ssr: true
- php: 8.2
ssr: true
- laravel: 10.0
Expand All @@ -29,6 +31,8 @@ jobs:
ssr: true
- db: postgres
ssr: true
- php: 8.4
laravel: 10.0

name: Test P${{ matrix.php }} - L${{ matrix.laravel }} - DB ${{ matrix.db }} - SSR ${{ matrix.ssr }} - ${{ matrix.dependency-version }}

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.3, 8.2]
php: [8.4, 8.3, 8.2]
laravel: [11.0, 10.0]
ssr: [true, false]
dependency-version: [prefer-lowest, prefer-stable]
Expand All @@ -20,8 +20,12 @@ jobs:
exclude:
- ssr: true
dependency-version: prefer-lowest
- ssr: true
php: 8.3
- ssr: true
php: 8.2
- php: 8.4
laravel: 10.0

name: Test P${{ matrix.php }} - L${{ matrix.laravel }} - SSR ${{ matrix.ssr }} - ${{ matrix.dependency-version }}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^8.2|^8.3",
"php": "^8.2|^8.3|^8.4",
"illuminate/contracts": "^10.48.2|^11.0.1"
},
"require-dev": {
Expand Down

0 comments on commit 66ab6fc

Please sign in to comment.