Support enumsynopsis in the most minimal way (#179) #3
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: Render Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: doc-en | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PhD | |
uses: actions/checkout@v4 | |
with: | |
path: "phd" | |
- name: "Checkout php/doc-en" | |
uses: "actions/checkout@v4" | |
with: | |
path: "en" | |
repository: "php/doc-en" | |
- name: "Checkout php/doc-base" | |
uses: "actions/checkout@v4" | |
with: | |
path: "doc-base" | |
repository: "php/doc-base" | |
- name: "Build documentation for doc-en" | |
run: "php doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout" | |
- name: "Render documentation for doc-en" | |
run: "php phd/render.php --docbook doc-base/.manual.xml --package PHP --format xhtml --format bigxhtml --format php --format tocfeed --forceindex --output output" |