File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 33
33
matrix :
34
34
php : ['7.3', '7.4', '8.0']
35
35
stability : [prefer-lowest, prefer-stable]
36
+ include :
37
+ - php : ' 8.1'
38
+ flags : " --ignore-platform-req=php"
39
+ stability : prefer-stable
40
+
36
41
37
42
name : PHP ${{ matrix.php }} - ${{ matrix.stability }}
38
43
61
66
with :
62
67
timeout_minutes : 5
63
68
max_attempts : 5
64
- command : composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
69
+ command : composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress ${{ matrix.flags }}
65
70
66
71
- name : Execute tests
72
+ continue-on-error : ${{ matrix.php > 8 }}
67
73
run : vendor/bin/phpunit --verbose
68
74
env :
69
75
DB_PORT : ${{ job.services.mysql.ports[3306] }}
77
83
matrix :
78
84
php : ['7.3', '7.4', '8.0']
79
85
stability : [prefer-lowest, prefer-stable]
86
+ include :
87
+ - php : ' 8.1'
88
+ flags : " --ignore-platform-req=php"
89
+ stability : prefer-stable
80
90
81
91
name : PHP ${{ matrix.php }} - ${{ matrix.stability }} - Windows
82
92
@@ -110,7 +120,8 @@ jobs:
110
120
with :
111
121
timeout_minutes : 5
112
122
max_attempts : 5
113
- command : composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
123
+ command : composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress ${{ matrix.flags }}
114
124
115
125
- name : Execute tests
126
+ continue-on-error : ${{ matrix.php > 8 }}
116
127
run : vendor/bin/phpunit --verbose
You can’t perform that action at this time.
0 commit comments