We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 888b995 commit b64eb3dCopy full SHA for b64eb3d
.github/workflows/unit-tests.yml
@@ -73,7 +73,14 @@ jobs:
73
uses: ramsey/composer-install@v3
74
with:
75
dependency-versions: ${{ matrix.dependency-versions }}
76
- composer-options: ${{ matrix.composer || '' }}
+ composer-options: >-
77
+ ${{
78
+ (
79
+ (matrix.php-ver == '7.4' || matrix.php-ver == '8.0')
80
+ && '--no-dev --ignore-platform-req=php'
81
+ || ''
82
+ )
83
+ }} ${{ matrix.composer || '' }}
84
85
- name: Run unit tests
86
run: ./vendor/bin/phpunit --no-coverage
0 commit comments