Skip to content

Commit 80cb468

Browse files
committed
Explicitly allow dev versions in CI
1 parent 73fda14 commit 80cb468

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,10 @@ jobs:
4747
run: composer config -g github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
4848
- name: Install horde/test dependency and other dependencies
4949
run: |
50-
## For unclear reasons, github action fails randomly if we do not install before we require.
51-
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer install
52-
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer require --dev horde/test dev-FRAMEWORK_6_0 horde/log ^3
50+
51+
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer config minimum-stability dev
52+
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer install --prefer-stable --no-progress
53+
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer require --prefer-stable --dev horde/test dev-FRAMEWORK_6_0 horde/log ^3
5354
- name: install horde/test ^3
5455
run: composer require horde/test ^3
5556
- name: install horde/http ^3

0 commit comments

Comments
 (0)