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 d97d2b9 commit f1737d0Copy full SHA for f1737d0
.github/workflows/test-application.yaml
@@ -48,14 +48,17 @@ jobs:
48
- php-version: '8.2'
49
dependencies: highest
50
behat-suite: standalone
51
+ composer-stability: 'dev'
52
53
54
55
behat-suite: embedded
56
57
58
59
60
behat-suite: cli
61
62
63
steps:
64
- name: Checkout project
@@ -74,6 +77,10 @@ jobs:
74
77
php-version: ${{ matrix.php-version }}
75
78
tools: 'composer:v2'
76
79
80
+ - name: Set composer stability
81
+ if: ${{ matrix.composer-stability }}
82
+ run: composer config minimum-stability ${{ matrix.composer-stability }}
83
+
84
- name: Install dependencies with Composer
85
uses: ramsey/composer-install@v2
86
with:
0 commit comments