Skip to content

Commit 1f229ce

Browse files
committed
set min stability to stable to test point releases
1 parent 90a0a02 commit 1f229ce

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
fail-fast: false
5454
matrix:
5555
php-versions: ['7.2', '7.3', '7.4']
56-
symfony-version: ['4.4.*', '5.0.1']
56+
symfony-version: ['4.4.*', '5.0.*']
5757

5858
steps:
5959
- name: Set PHP Version
@@ -85,7 +85,9 @@ jobs:
8585
SYMFONY_REQUIRE: ${{ matrix.symfony-version }}
8686

8787
- name: Install dependencies
88-
run: composer install --prefer-dist --no-progress --no-suggest
88+
run: |
89+
composer config minimum-stability stable
90+
composer install --prefer-dist --no-progress --no-suggest
8991
9092
- name: Unit Tests
9193
run: vendor/bin/simple-phpunit -c $GITHUB_WORKSPACE/phpunit.xml.dist --testsuite unit

0 commit comments

Comments
 (0)