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 0c92f1a commit bc8cc9fCopy full SHA for bc8cc9f
.github/workflows/php.yml
@@ -46,6 +46,7 @@ jobs:
46
matrix:
47
operating-system: [ubuntu-latest]
48
php-versions: ['8.1', '8.2', '8.3', '8.4']
49
+ symfony: ['~6.4.0', '']
50
51
steps:
52
- name: Setup PHP, with composer and extensions
@@ -71,6 +72,10 @@ jobs:
71
72
73
- uses: actions/checkout@v4
74
75
+ - name: "Downgrade symfony/finder"
76
+ if: matrix.symfony != ''
77
+ run: composer require --no-update symfony/finder:${{ matrix.symfony }}
78
+
79
- name: Get composer cache directory
80
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
81
0 commit comments