File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,9 @@ name: code-coverage
2
2
3
3
on :
4
4
push :
5
- branches :
6
- - develop
7
- - main
5
+ branches : [main]
8
6
pull_request :
9
- branches :
10
- - develop
11
- - main
7
+ branches : [main]
12
8
13
9
jobs :
14
10
test :
Original file line number Diff line number Diff line change @@ -2,18 +2,17 @@ name: run-tests
2
2
3
3
on :
4
4
push :
5
- branches : [develop, main]
5
+ branches : [main]
6
6
pull_request :
7
- branches : [develop, main]
7
+ branches : [main]
8
8
9
9
jobs :
10
10
test :
11
- runs-on : ${{ matrix.os }}
11
+ runs-on : ubuntu-latest
12
12
timeout-minutes : 5
13
13
strategy :
14
14
fail-fast : true
15
15
matrix :
16
- os : [ubuntu-latest, windows-latest]
17
16
php : [8.3, 8.2, 8.1]
18
17
laravel : [11.*, 10.*]
19
18
stability : [prefer-lowest, prefer-stable]
26
25
- laravel : 11.*
27
26
php : 8.1
28
27
29
- name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
28
+ name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
30
29
31
30
steps :
32
31
- name : Checkout code
You can’t perform that action at this time.
0 commit comments