Skip to content

Commit 18e0b7c

Browse files
Enhance CI
1 parent d5b953e commit 18e0b7c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: run-tests
22

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

99
jobs:
1010
test:
@@ -13,19 +13,25 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest]
16-
php: [8.2]
16+
php: [8.3, 8.4]
1717
laravel: [10.*]
1818
stability: [prefer-stable]
1919
include:
2020
- laravel: 10.*
2121
testbench: 8.*
2222
carbon: ^2.63
23+
- laravel: 11.*
24+
testbench: 9.*
25+
carbon: ^3.0
26+
- laravel: 12.*
27+
testbench: 10.*
28+
carbon: ^3.0
2329

2430
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2531

2632
steps:
2733
- name: Checkout code
28-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
2935

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

0 commit comments

Comments
 (0)