mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
minor #14754 Add PHP 8.2 to workflows (jakubtobiasz)
This PR was merged into the 1.13 branch.
Discussion
----------
| Q | A |
|-----------------|--------------------------------------------------------------|
| Branch? | 1.13 <!-- see the comment below --> |
| Bug fix? | no |
| New feature? | no |
| BC breaks? | no |
| Deprecations? | no <!-- don't forget to update the UPGRADE-*.md file --> |
| Related tickets | successor of #14627 |
| License | MIT |
This PR takes an idea from #14627 but is adjusted to our new CI 💃🏻.
Commits
-------
add752ba5e Add PHP 8.2 to workflows
This commit is contained in:
commit
5ed82baeb3
2 changed files with 15 additions and 11 deletions
4
.github/workflows/ci_static-checks.yaml
vendored
4
.github/workflows/ci_static-checks.yaml
vendored
|
|
@ -88,6 +88,10 @@ jobs:
|
|||
${{ steps.composer-cache.outputs.dir }}
|
||||
key: ${{ github.run_id }}-${{ runner.os }}-${{ hashFiles('composer.json') }}-symfony-${{ matrix.symfony }}-api-platform-${{ matrix.api-platform }}
|
||||
|
||||
- name: "Require ext-random"
|
||||
if: matrix.php == '8.2'
|
||||
run: composer require ext-random --no-update --no-scripts --no-interaction
|
||||
|
||||
- name: "Install dependencies"
|
||||
run: composer update --no-interaction --no-scripts
|
||||
|
||||
|
|
|
|||
22
.github/workflows/matrix.json
vendored
22
.github/workflows/matrix.json
vendored
|
|
@ -8,7 +8,7 @@
|
|||
"api-platform": "~2.6.0"
|
||||
},
|
||||
{
|
||||
"php": "8.1",
|
||||
"php": "8.2",
|
||||
"symfony": "^6.0",
|
||||
"api-platform": "^2.7"
|
||||
}
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
"dbal": "^2.7"
|
||||
},
|
||||
{
|
||||
"php": "8.1",
|
||||
"php": "8.2",
|
||||
"symfony": "^6.0",
|
||||
"mariadb": "10.4.10",
|
||||
"dbal": "^3.0"
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
"dbal": "^2.7"
|
||||
},
|
||||
{
|
||||
"php": "8.1",
|
||||
"php": "8.2",
|
||||
"symfony": "^6.0",
|
||||
"api-platform": "^2.7",
|
||||
"mysql": "8.0",
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
"postgres": "13.9"
|
||||
},
|
||||
{
|
||||
"php": "8.1",
|
||||
"php": "8.2",
|
||||
"symfony": "^6.0",
|
||||
"postgres": "14.6"
|
||||
}
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
"symfony": "^5.4"
|
||||
},
|
||||
{
|
||||
"php": "8.1",
|
||||
"php": "8.2",
|
||||
"symfony": "^6.0"
|
||||
}
|
||||
]
|
||||
|
|
@ -87,7 +87,7 @@
|
|||
},
|
||||
"full": {
|
||||
"static-checks": {
|
||||
"php": [ "8.0", "8.1" ],
|
||||
"php": [ "8.0", "8.1", "8.2" ],
|
||||
"symfony": [ "^5.4", "^6.0" ],
|
||||
"api-platform": [ "^2.7" ],
|
||||
"include": [
|
||||
|
|
@ -99,13 +99,13 @@
|
|||
]
|
||||
},
|
||||
"e2e-mariadb": {
|
||||
"php": [ "8.0", "8.1" ],
|
||||
"php": [ "8.0", "8.1", "8.2" ],
|
||||
"symfony": [ "^5.4", "^6.0" ],
|
||||
"mariadb": [ "10.4.10" ],
|
||||
"dbal": [ "^2.7", "^3.0" ]
|
||||
},
|
||||
"e2e-mysql": {
|
||||
"php": [ "8.0", "8.1" ],
|
||||
"php": [ "8.0", "8.1", "8.2" ],
|
||||
"symfony": [ "^5.4", "^6.0" ],
|
||||
"api-platform": [ "^2.7" ],
|
||||
"mysql": [ "5.7", "8.0" ],
|
||||
|
|
@ -147,16 +147,16 @@
|
|||
]
|
||||
},
|
||||
"e2e-pgsql": {
|
||||
"php": [ "8.0", "8.1" ],
|
||||
"php": [ "8.0", "8.1", "8.2" ],
|
||||
"symfony": [ "^5.4", "^6.0" ],
|
||||
"postgres": [ "13.9", "14.6" ]
|
||||
},
|
||||
"packages": {
|
||||
"php": [ "8.0", "8.1" ],
|
||||
"php": [ "8.0", "8.1", "8.2" ],
|
||||
"symfony": [ "^5.4", "^6.0" ]
|
||||
},
|
||||
"packages-swiftmailer": {
|
||||
"php": [ "8.0", "8.1" ],
|
||||
"php": [ "8.0", "8.1", "8.2" ],
|
||||
"symfony": [ "^5.4" ]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue