Skip to content

Commit 356abeb

Browse files
committed
Run updated recipes also on the latest php version
1 parent 1efd453 commit 356abeb

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/callable-qa.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,3 +288,37 @@ jobs:
288288
composer config minimum-stability dev
289289
export SYMFONY_ENDPOINT=https://raw.githubusercontent.com/${{ github.repository }}/flex/pull-${{ github.event.number }}/index.json
290290
composer require -W --ansi $PACKAGES
291+
292+
-
293+
name: Setup PHP 8.4
294+
if: "always() && steps.config.outcome == 'success'"
295+
uses: shivammathur/setup-php@v2
296+
with:
297+
coverage: "none"
298+
php-version: "8.4"
299+
300+
-
301+
name: Create-project with skeleton ^6
302+
if: "always() && steps.config.outcome == 'success'"
303+
run: |
304+
set -x
305+
php -v
306+
composer create-project --ansi "symfony/skeleton:^6" sf6-php84
307+
cd sf6-php84
308+
composer config extra.symfony.allow-contrib ${{ inputs.contrib && 'true' || 'false' }}
309+
composer config minimum-stability dev
310+
export SYMFONY_ENDPOINT=https://raw.githubusercontent.com/${{ github.repository }}/flex/pull-${{ github.event.number }}/index.json
311+
composer require -W --ansi $PACKAGES
312+
313+
-
314+
name: Create-project with skeleton ^7
315+
if: "always() && steps.config.outcome == 'success'"
316+
run: |
317+
set -x
318+
php -v
319+
composer create-project --ansi "symfony/skeleton:^7" sf7-php84
320+
cd sf7-php84
321+
composer config extra.symfony.allow-contrib ${{ inputs.contrib && 'true' || 'false' }}
322+
composer config minimum-stability dev
323+
export SYMFONY_ENDPOINT=https://raw.githubusercontent.com/${{ github.repository }}/flex/pull-${{ github.event.number }}/index.json
324+
composer require -W --ansi $PACKAGES

0 commit comments

Comments
 (0)