-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Symfony 7 #324
Conversation
9370c9c
to
566b86b
Compare
7294562
to
28f9d1e
Compare
name: "PHP ${{ matrix.php }}${{ matrix.symfony != '' && format(', Symfony {0}', matrix.symfony) || '' }}${{ matrix.currency-bundle != '' && format(', CurrencyBundle {0}', matrix.currency-bundle) || '' }}${{ matrix.postgres != '' && format(', PostgresSQL {0}', matrix.postgres) || '' }}" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ["8.0", "8.1"] | ||
php: ["8.1", "8.2", "8.3"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we're allowing installation with PHP 8.0, I think we should leave at least a single build for it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would be for upgrading minimum PHP to 8.1 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done, I bump php version on Bundle and composer.json
name: "PHP ${{ matrix.php }}${{ matrix.symfony != '' && format(', Symfony {0}', matrix.symfony) || '' }}${{ matrix.currency-bundle != '' && format(', CurrencyBundle {0}', matrix.currency-bundle) || '' }}${{ matrix.postgres != '' && format(', PostgresSQL {0}', matrix.postgres) || '' }}" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ["8.0", "8.1"] | ||
php: ["8.1", "8.2", "8.3"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would be for upgrading minimum PHP to 8.1 🤔
.github/workflows/build.yml
Outdated
@@ -13,23 +13,30 @@ on: | |||
jobs: | |||
tests: | |||
runs-on: ubuntu-latest | |||
continue-on-error: ${{ matrix.experimental }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As we would like to add support for SF7 with this PR, I'm not sure if this flag is needed 🤔
Thank you, Loïc! 🥇 |
No description provided.