We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b869518 commit 02d8318Copy full SHA for 02d8318
.github/workflows/run-tests.yml
@@ -6,25 +6,31 @@ on:
6
- master
7
pull_request:
8
branches:
9
- - "*"
+ - *
10
schedule:
11
- cron: '0 0 * * *'
12
13
jobs:
14
php-tests:
15
runs-on: ubuntu-20.04
16
+
17
timeout-minutes: 15
18
19
env:
20
COMPOSER_NO_INTERACTION: 1
21
22
strategy:
23
matrix:
24
php: [8.2, 8.1, 8.0]
- laravel: [10.*, 9.*]
25
+ laravel: ['9.*', '10.*', '11.*']
26
dependency-version: [prefer-lowest, prefer-stable]
27
exclude:
28
- php: 8.0
29
laravel: 10.*
30
+ - laravel: 11.*
31
+ php: 8.1
32
33
+ php: 8.0
34
35
steps:
36
- name: Checkout code
0 commit comments