File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 68
68
fail-fast : false
69
69
matrix :
70
70
php-version : ['8.1', '8.3', '8.4']
71
+ minimum-stability : ['stable', 'dev']
71
72
include :
72
73
- php-version : ' 8.1'
73
74
dependency-version : ' lowest'
77
78
dependency-version : ' highest'
78
79
component : ${{ fromJson(needs.tests-php-components.outputs.components )}}
79
80
exclude :
81
+ - php-version : ' 8.1'
82
+ minimum-stability : ' dev'
83
+ - php-version : ' 8.3'
84
+ minimum-stability : ' dev'
80
85
- component : Map # does not support PHP 8.1
81
86
php-version : ' 8.1'
82
87
- component : Map/src/Bridge/Google # does not support PHP 8.1
@@ -104,6 +109,11 @@ jobs:
104
109
run : php .github/build-packages.php
105
110
working-directory : ${{ github.workspace }}
106
111
112
+ - name : Configure ${{ matrix.minimum-stability }} stability
113
+ if : ${{ matrix.minimum-stability }}
114
+ run : composer config minimum-stability ${{ matrix.minimum-stability }}
115
+ working-directory : " src/${{ matrix.component }}"
116
+
107
117
- name : Install ${{ matrix.component }} packages
108
118
uses : ramsey/composer-install@v3
109
119
with :
You can’t perform that action at this time.
0 commit comments