Added PHP 8.2 to build matrixes

This commit is contained in:
Alejandro Celaya
2022-09-24 08:03:38 +02:00
parent 70b15a7ab0
commit 62ce9311bf
5 changed files with 12 additions and 5 deletions

View File

@@ -41,7 +41,10 @@ runs:
extensions: ${{ inputs.php-extensions }}
coverage: pcov
ini-values: pcov.directory=module
- run: echo "::set-output name=composerArgs::${{ inputs.php-version == '8.2' && '--ignore-platform-req-php' || '' }}"
id: composer_args
shell: bash
- name: Install dependencies
if: ${{ inputs.install-deps == 'yes' }}
run: composer install --no-interaction --prefer-dist
run: composer install --no-interaction --prefer-dist ${{ steps.composer_args.outputs.composerArgs }}
shell: bash