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 cb3ec48 commit be2b3cbCopy full SHA for be2b3cb
.github/workflows/run-tests.yml
@@ -1,22 +1,28 @@
1
name: run-tests
2
3
-on: [push, pull_request]
+on:
4
+ - push
5
+ - pull_request
6
7
jobs:
8
test:
9
runs-on: ${{ matrix.os }}
10
+
11
strategy:
12
fail-fast: true
13
matrix:
14
os: [ubuntu-latest]
15
php: [8.2, 8.1]
- laravel: [10.*]
16
+ laravel: ['10.*', '11.*']
17
stability: [prefer-lowest, prefer-stable]
18
include:
19
- laravel: 10.*
20
testbench: 8.*
21
pest: ^2.13
22
pest_laravel: ^2.0
23
+ exclude:
24
+ - laravel: 11.*
25
+ php: 8.1
26
27
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
28
0 commit comments