File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -2,19 +2,22 @@ name: run-tests
2
2
3
3
on :
4
4
push :
5
- branches : [main]
5
+ branches :
6
+ - main
6
7
pull_request :
7
- branches : [main]
8
+ branches :
9
+ - main
8
10
9
11
jobs :
10
12
test :
11
13
runs-on : ${{ matrix.os }}
14
+
12
15
strategy :
13
16
fail-fast : false
14
17
matrix :
15
18
os : [ubuntu-latest, windows-latest]
16
19
php : [8.2, 8.1, 8.3]
17
- laravel : [10.*, 11.*]
20
+ laravel : [' 10.*', ' 11.*', '12.*' ]
18
21
stability : [prefer-lowest, prefer-stable]
19
22
include :
20
23
- laravel : 10.*
@@ -24,12 +27,14 @@ jobs:
24
27
collision : 7.*
25
28
- laravel : 11.*
26
29
testbench : 9.*
27
- carbon : " ^2.67|^3.0"
30
+ carbon : ^2.67|^3.0
28
31
laravel-package-tools : ^1.16
29
32
collision : ^8.1.1
30
33
exclude :
31
34
- laravel : 11.*
32
35
php : 8.1
36
+ - laravel : 12.*
37
+ php : 8.1
33
38
34
39
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
35
40
66
71
run : vendor/bin/pest --version
67
72
68
73
- name : Execute tests on Linux
69
- if : matrix.os == 'ubuntu-latest'
74
+ if : " matrix.os == 'ubuntu-latest'"
70
75
run : Xvfb :99 & DISPLAY=:99 vendor/bin/pest
71
76
72
77
- name : Execute tests on Windows
73
- if : matrix.os == 'windows-latest'
78
+ if : " matrix.os == 'windows-latest'"
74
79
run : vendor/bin/pest
You can’t perform that action at this time.
0 commit comments