Merge pull request #375 from phpDocumentor/build-php84 #75
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
# https://docs.github.com/en/actions | |
name: "Integrate" | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- "5.x" | |
pull_request: null | |
# Allow manually triggering the workflow. | |
workflow_dispatch: null | |
jobs: | |
code-coverage: | |
name: "Code Coverage" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
with: | |
composer-root-version: "5.x-dev" | |
coding-standards: | |
name: "Coding Standards" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
with: | |
composer-root-version: "5.x-dev" | |
dependency-analysis: | |
name: "Dependency analysis" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
with: | |
composer-root-version: "5.x-dev" | |
lint-root: | |
name: "Lint root" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
with: | |
composer-options: "--no-check-publish --ansi" | |
static-analysis: | |
name: "Static analysis" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
with: | |
php-extensions: "none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, fileinfo, pcntl, posix" | |
composer-root-version: "5.x-dev" | |
unit-tests: | |
name: "Unit test" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
with: | |
composer-root-version: "5.x-dev" | |
upcoming-releases: true | |
bc_check: | |
name: "BC Check" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v3" | |
- name: "fetch tags" | |
run: "git fetch --depth=1 origin +refs/tags/*:refs/tags/*" | |
- name: "BC Check" | |
uses: "docker://nyholm/roave-bc-check-ga" |