Skip to content

Commit 09eb360

Browse files
committed
[CI] Run tests on minimum-stability=dev too
1 parent a282ed5 commit 09eb360

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ jobs:
7575
dependency-version: 'highest'
7676
- php-version: '8.4'
7777
dependency-version: 'highest'
78+
minimum-stability: 'stable'
79+
- php-version: '8.4'
80+
dependency-version: 'highest'
81+
minimum-stability: 'dev'
7882
component: ${{ fromJson(needs.tests-php-components.outputs.components )}}
7983
exclude:
8084
- component: Map # does not support PHP 8.1
@@ -104,6 +108,11 @@ jobs:
104108
run: php .github/build-packages.php
105109
working-directory: ${{ github.workspace }}
106110

111+
- name: Configure ${{ matrix.minimum-stability }} stability
112+
if: ${{ matrix.minimum-stability }}
113+
run: composer config minimum-stability ${{ matrix.minimum-stability }}
114+
working-directory: "src/${{ matrix.component }}"
115+
107116
- name: Install ${{ matrix.component }} packages
108117
uses: ramsey/composer-install@v3
109118
with:

0 commit comments

Comments
 (0)