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 f6a5dc2 commit e51b40aCopy full SHA for e51b40a
.github/workflows/ci.yml
@@ -14,28 +14,29 @@ jobs:
14
build:
15
if: "!contains(github.event.head_commit.message, 'skip ci')"
16
17
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-latest
18
19
strategy:
20
+ fail-fast: false
21
matrix:
22
php:
- - '7.4'
23
- '8.0'
24
+ - '8.1'
25
node:
26
- '12'
27
- '14'
28
- '16'
29
laravel:
- - 7.*
30
- 8.*
31
+ - 9.*
32
prefer:
33
- 'prefer-lowest'
34
- 'prefer-stable'
35
include:
- - laravel: '7.*'
36
- testbench: '5.*'
37
- laravel: '8.*'
38
testbench: '6.*'
+ - laravel: '9.*'
39
+ testbench: '7.*'
40
41
name: PHP ${{ matrix.php }} - Node ${{ matrix.node }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}
42
0 commit comments