File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,17 @@ jobs:
21
21
22
22
strategy :
23
23
matrix :
24
- php : [8.x , 7.4, 7.3]
24
+ php : [8.0 , 7.4, 7.3]
25
25
dependency-version : [prefer-lowest, prefer-stable]
26
+ experimental : [false]
27
+
28
+ include :
29
+ - php : ' 8.1'
30
+ dependency-version : ' prefer-stable'
31
+ experimental : true
26
32
27
33
name : P${{ matrix.php }} - ${{ matrix.dependency-version }}
34
+ continue-on-error : ${{ matrix.experimental }}
28
35
29
36
steps :
30
37
- name : Checkout code
37
44
coverage : none
38
45
tools : composer
39
46
40
- - name : Install dependencies
47
+ - name : Install dependencies - normal
48
+ if : ${{ matrix.php < 8.1 }}
41
49
run : |
42
50
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress
43
51
52
+ - name : Install dependencies - ignore platform reqs
53
+ if : ${{ matrix.php >= 8.1 }}
54
+ run : |
55
+ composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --ignore-platform-reqs
56
+
44
57
- name : Execute Unit Tests
45
58
run : vendor/bin/phpunit
You can’t perform that action at this time.
0 commit comments