-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Allow Symfony 7.0 * Sf7 requires 8.2 * Add ignore for PHPStan * Fix test on PHP 8.2/SF 5.4 --------- Co-authored-by: David Greminger <[email protected]>
- Loading branch information
1 parent
fcf49c9
commit 0a1998a
Showing
3 changed files
with
18 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,12 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
php: [8.0, 8.1, 8.2] | ||
symfony: [4.4, 5.4, 6.0] | ||
symfony: [4.4, 5.4, 6.0, 7.0] | ||
exclude: | ||
- symfony: 7.0 | ||
php: 8.0 | ||
- symfony: 7.0 | ||
php: 8.1 | ||
steps: | ||
- name: Setup PHP | ||
uses: shivammathur/[email protected] | ||
|
@@ -51,7 +56,7 @@ jobs: | |
|
||
- name: Install the dependencies | ||
run: | | ||
composer require symfony/framework-bundle:^${{ matrix.symfony }} | ||
composer require symfony/framework-bundle:^${{ matrix.symfony }} symfony/translation:^${{ matrix.symfony }} symfony/console:^${{ matrix.symfony }} -W | ||
composer install --no-interaction --no-suggest | ||
- name: Run the unit tests | ||
run: vendor/bin/phpunit --colors=always | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I think the last "0" is supposed to be behind the "6."