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