Skip to content

Commit e910c1a

Browse files
authored
Fix github action syntax
1 parent 5599a38 commit e910c1a

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
name: run-tests
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
410

511
jobs:
612
test:
713
runs-on: ${{ matrix.os }}
14+
815
strategy:
916
fail-fast: false
1017
matrix:
1118
os: [ubuntu-latest, windows-latest]
1219
php: [8.3, 8.2, 8.1]
1320
laravel: [10.*, 9.*]
1421
stability: [prefer-stable]
15-
include:
16-
- laravel: 10.*
17-
testbench: 8.*
18-
- laravel: 9.*
19-
testbench: 7.*
2022
include:
2123
- laravel: 9.*
2224
testbench: 7.*

0 commit comments

Comments
 (0)