Skip to content

Commit 2604655

Browse files
authored
Use available php for GH CI
Hard-coding a certain php version doesn't make sense if we use ubuntu- *latest*. Either we use the default php (as with this patch), or we commit to a certain Ubuntu version. Closes GH-82.
1 parent ab5223f commit 2604655

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/integrate.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
- name: "Run QA scripts for EN docs"
5656
if: "matrix.language == 'en'"
5757
run: |
58-
php8.0 doc-base/scripts/qa/extensions.xml.php --check
59-
php8.0 doc-base/scripts/qa/section-order.php
58+
php doc-base/scripts/qa/extensions.xml.php --check
59+
php doc-base/scripts/qa/section-order.php
6060
6161
- name: "Build documentation for ${{ matrix.language }}"
62-
run: "php8.0 doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout --with-lang=${{ matrix.language }}"
62+
run: "php doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout --with-lang=${{ matrix.language }}"

0 commit comments

Comments
 (0)