Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/workflows/run-tests-l11.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
name: "Run Tests - Laravel 11"
name: Run Tests - Laravel 11

on:
push:
branches: [ v7.x, master ]

branches:
- v7.x
- master
pull_request:
branches: [ v7.x, master ]
branches:
- v7.x
- master

jobs:
tests:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php: [ 8.2, 8.3 ]
laravel: [ 11.* ]
php: [8.2, 8.3]
laravel: ['11.*', '12.*']
include:
- laravel: 11.*
testbench: 8.*
- laravel: 12.*
testbench: 10.*

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"version": "7.0.0",
"require": {
"php": "^8.2|^8.3",
"illuminate/cache": "^11.0",
"illuminate/cache": "^11.0|^12.0",
"mongodb/laravel-mongodb": "^4.1"
},
"require-dev": {
"orchestra/testbench": "^9.0"
"orchestra/testbench": "^9.0|^10.0"
},
"license": "MIT",
"authors": [
Expand Down