Skip to content

Commit e4c6259

Browse files
committed
fix run-tests
1 parent 2899fd9 commit e4c6259

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

.github/workflows/run-tests.yml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,36 @@
1-
name: run-tests
1+
name: "Run Tests"
22

33
on:
44
push:
5-
branches: [v3]
5+
branches: [main]
66
pull_request:
7-
branches: [v3]
7+
branches: [main]
88

99
jobs:
1010
test:
11-
runs-on: ubuntu-latest
11+
runs-on: ${{ matrix.os }}
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
php: [8.5, 8.4, 8.3]
16-
laravel: [11.*,12.*]
15+
os: [ubuntu-latest, windows-latest]
16+
php: [8.5, 8.4, 8.3, 8.2]
17+
laravel: [12.*, 11.*]
1718
stability: [prefer-lowest, prefer-stable]
1819
include:
19-
- laravel: 10.*
20-
testbench: 8.*
21-
carbon: 2.*
20+
- laravel: 12.*
21+
testbench: 10.*
22+
carbon: 3.*
23+
collision: 8.*
24+
- laravel: 11.*
25+
testbench: 9.*
26+
carbon: 3.*
27+
collision: 8.*
2228

23-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
29+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2430

2531
steps:
2632
- name: Checkout code
27-
uses: actions/checkout@v6
33+
uses: actions/checkout@v4
2834

2935
- name: Setup PHP
3036
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)