[FEATURE] Introduce noindex option for confvals #2795
Workflow file for this run
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 | |
pull_request: null | |
push: | |
branches: | |
- "main" | |
env: | |
ComposerRootVersion: "2.x-dev" | |
jobs: | |
code-coverage: | |
name: "Code Coverage" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
with: | |
php-version: "8.2" | |
coding-standards: | |
name: "Coding Standards" | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "8.2" | |
tools: "cs2pr" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v3" | |
with: | |
dependency-versions: "locked" | |
- name: "Run PHP_CodeSniffer" | |
run: "vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr" | |
lint-root: | |
name: "Lint root" | |
uses: "phpDocumentor/.github/.github/workflows/lint.yml@main" | |
with: | |
composer-options: "--no-check-publish --ansi" | |
php-version: "8.2" | |
static-analysis: | |
name: "Static analysis" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
with: | |
php-version: "8.2" | |
composer-root-version: "2.x-dev" | |
architecture: | |
name: "Check architecture" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "Install PHP" | |
uses: "shivammathur/[email protected]" | |
with: | |
coverage: "none" | |
php-version: "8.2" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v3" | |
with: | |
dependency-versions: "locked" | |
composer-options: "--prefer-dist" | |
- name: "Check package level" | |
run: "vendor/bin/deptrac --config-file deptrac.packages.yaml --formatter=github-actions" | |
unit-tests: | |
name: "Unit test" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
with: | |
composer-root-version: "2.x-dev" | |
functional-tests: | |
name: "Functional test" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
needs: "unit-tests" | |
with: | |
test-suite: "functional" | |
composer-root-version: "2.x-dev" | |
integration-tests: | |
name: "integration test" | |
uses: "phpDocumentor/.github/.github/workflows/[email protected]" | |
needs: "unit-tests" | |
with: | |
test-suite: "integration" | |
composer-root-version: "2.x-dev" | |
xml-lint: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Install libxml2-utils" | |
run: | | |
sudo apt-get update | |
sudo apt -y install libxml2-utils | |
- name: "Lint xml configs" | |
run: "tools/xmllint.sh" |