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 bacd5dc commit df12a3eCopy full SHA for df12a3e
.github/workflows/phptest.yml
@@ -10,7 +10,19 @@ jobs:
10
11
strategy:
12
matrix:
13
- php-versions: [7.4, 8.0.6, 8.1, 8.2]
+ php-versions: [7.4, 8.0, 8.1, 8.2]
14
+ laravel: [8.*]
15
+ include:
16
+ - php: 8.0
17
+ laravel: 9.*
18
+ - php: 8.1
19
20
+ - php: 8.2
21
22
23
+ laravel: 10.*
24
25
26
27
steps:
28
- name: Cancel Previous Runs
@@ -31,7 +43,9 @@ jobs:
31
43
tools: composer:v2
32
44
33
45
- name: Composer Install
34
- run: composer install
46
+ run: |
47
+ composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
48
+ composer install
35
49
36
50
- name: PHPUNIT Tests
37
51
run: |
0 commit comments