[BUGFIX] Correct Menu levels in global menu tree #157
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
name: "Documentation" | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- "main" | |
paths: | |
- ".github/workflows/documentation.yml" | |
- "docs/**" | |
- "packages/**" | |
push: | |
branches: | |
- "main" | |
paths: | |
- ".github/workflows/documentation.yml" | |
- "docs/**" | |
- "packages/**" | |
jobs: | |
validate-with-guides: | |
name: "Validate documentation with phpDocumentor/guides" | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v4" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "8.2" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "highest" | |
- name: "Run guides-cli" | |
run: "vendor/bin/guides -vvv --no-progress docs --output='/tmp/test' --fail-on-log" |