Skip to content

[!!!][TASK] Make output an option instead of argument #35

[!!!][TASK] Make output an option instead of argument

[!!!][TASK] Make output an option instead of argument #35

Workflow file for this run

name: "Documentation"
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- "main"
paths:
- ".github/workflows/documentation.yml"
- "docs/**"
push:
branches:
- "main"
paths:
- ".github/workflows/documentation.yml"
- "docs/**"
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"