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 90a0a02 commit 1f229ceCopy full SHA for 1f229ce
.github/workflows/ci.yml
@@ -53,7 +53,7 @@ jobs:
53
fail-fast: false
54
matrix:
55
php-versions: ['7.2', '7.3', '7.4']
56
- symfony-version: ['4.4.*', '5.0.1']
+ symfony-version: ['4.4.*', '5.0.*']
57
58
steps:
59
- name: Set PHP Version
@@ -85,7 +85,9 @@ jobs:
85
SYMFONY_REQUIRE: ${{ matrix.symfony-version }}
86
87
- name: Install dependencies
88
- run: composer install --prefer-dist --no-progress --no-suggest
+ run: |
89
+ composer config minimum-stability stable
90
+ composer install --prefer-dist --no-progress --no-suggest
91
92
- name: Unit Tests
93
run: vendor/bin/simple-phpunit -c $GITHUB_WORKSPACE/phpunit.xml.dist --testsuite unit
0 commit comments