Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ jobs:
build:
name: "Build"

runs-on: "ubuntu-20.04"
runs-on: "ubuntu-latest"

strategy:
matrix:
language:
- "ja"
php:
- "8.4"

steps:
- name: "Checkout php/doc-${{ matrix.language }}"
Expand All @@ -39,5 +41,16 @@ jobs:
path: "doc-base"
repository: "php/doc-base"

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
coverage: none

- run: php -v
- run: php -m
- run: php -i

- name: "Build documentation for ${{ matrix.language }}"
run: "php8.0 doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout --with-lang=${{ matrix.language }}"
run: "php doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout --with-lang=${{ matrix.language }}"
2 changes: 1 addition & 1 deletion reference/win32service/functions/win32-create-service.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="2.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 95fe2d7de6477ae5e28ae2e6f11eb4025f427b4f Maintainer: takagi Status: ready -->
<!-- Generated by xml_proto.php v2.3. Found in /scripts directory of phpdoc. -->
Expand Down
Loading