We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f822e80 commit f172094Copy full SHA for f172094
.github/workflows/ci.yml
@@ -145,7 +145,9 @@ jobs:
145
coverage: none
146
147
- name: "Install Sphinx"
148
- run: pip install sphinx myst-parser sphinx-rtd-theme
+ run: |
149
+ apt install pipx
150
+ pipx install sphinx myst-parser sphinx-rtd-theme
151
152
- name: "Install dependencies with composer"
153
uses: ramsey/composer-install@v3
tests/BuildDirTrait.php
@@ -19,6 +19,7 @@
19
*/
20
trait BuildDirTrait{
21
22
+ /** @var string */
23
private const _buildDir = __DIR__.'/../.build/';
24
25
/**
0 commit comments