We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d95c793 commit b75e974Copy full SHA for b75e974
.github/workflows/run-tests.yml
@@ -2,25 +2,28 @@ name: run-tests
2
3
on:
4
push:
5
- branches: [main]
+ branches:
6
+ - main
7
pull_request:
- branches: ["*"]
8
9
+ - *
10
11
jobs:
12
test:
13
runs-on: ${{ matrix.os }}
14
+
15
strategy:
16
fail-fast: true
17
matrix:
18
os: [ubuntu-latest, windows-latest]
- # run on php 8.2
19
php: [8.2]
- # run on laravel 10
- laravel: [10.*]
20
+ laravel: ['10.*', '12.*']
21
stability: [prefer-stable]
22
include:
23
- laravel: 10.*
24
testbench: 8.*
25
+ - laravel: 12.*
26
+ testbench: 10.*
27
28
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
29
0 commit comments