Upgrade workflow for 6.x

This commit is contained in:
Jaapio
2025-12-22 23:02:14 +01:00
parent 5cee1d3dfc
commit d075d95973
+7 -7
View File
@@ -5,7 +5,7 @@ name: "Integrate"
on: # yamllint disable-line rule:truthy on: # yamllint disable-line rule:truthy
push: push:
branches: branches:
- "5.x" - "6.x"
pull_request: null pull_request: null
# Allow manually triggering the workflow. # Allow manually triggering the workflow.
workflow_dispatch: null workflow_dispatch: null
@@ -15,19 +15,19 @@ jobs:
name: "Code Coverage" name: "Code Coverage"
uses: "phpDocumentor/.github/.github/workflows/[email protected]" uses: "phpDocumentor/.github/.github/workflows/[email protected]"
with: with:
composer-root-version: "5.x-dev" composer-root-version: "6.x-dev"
coding-standards: coding-standards:
name: "Coding Standards" name: "Coding Standards"
uses: "phpDocumentor/.github/.github/workflows/[email protected]" uses: "phpDocumentor/.github/.github/workflows/[email protected]"
with: with:
composer-root-version: "5.x-dev" composer-root-version: "6.x-dev"
dependency-analysis: dependency-analysis:
name: "Dependency analysis" name: "Dependency analysis"
uses: "phpDocumentor/.github/.github/workflows/[email protected]" uses: "phpDocumentor/.github/.github/workflows/[email protected]"
with: with:
composer-root-version: "5.x-dev" composer-root-version: "6.x-dev"
lint-root: lint-root:
name: "Lint root" name: "Lint root"
@@ -40,19 +40,19 @@ jobs:
uses: "phpDocumentor/.github/.github/workflows/[email protected]" uses: "phpDocumentor/.github/.github/workflows/[email protected]"
with: with:
php-extensions: "none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, fileinfo, pcntl, posix" php-extensions: "none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, fileinfo, pcntl, posix"
composer-root-version: "5.x-dev" composer-root-version: "6.x-dev"
unit-tests: unit-tests:
name: "Unit test" name: "Unit test"
uses: "phpDocumentor/.github/.github/workflows/[email protected]" uses: "phpDocumentor/.github/.github/workflows/[email protected]"
with: with:
composer-root-version: "5.x-dev" composer-root-version: "6.x-dev"
upcoming-releases: true upcoming-releases: true
integration-tests: integration-tests:
name: "Integration test" name: "Integration test"
uses: "phpDocumentor/.github/.github/workflows/[email protected]" uses: "phpDocumentor/.github/.github/workflows/[email protected]"
with: with:
composer-root-version: "5.x-dev" composer-root-version: "6.x-dev"
upcoming-releases: true upcoming-releases: true
test-suite: "integration" test-suite: "integration"