smiley 1 год назад
Родитель
Сommit
f172094346
2 измененных файлов с 4 добавлено и 1 удалено
  1. 3 1
      .github/workflows/ci.yml
  2. 1 0
      tests/BuildDirTrait.php

+ 3 - 1
.github/workflows/ci.yml

@@ -145,7 +145,9 @@ jobs:
           coverage: none
 
       - name: "Install Sphinx"
-        run: pip install sphinx myst-parser sphinx-rtd-theme
+        run: |
+          apt install pipx
+          pipx install sphinx myst-parser sphinx-rtd-theme
 
       - name: "Install dependencies with composer"
         uses: ramsey/composer-install@v3

+ 1 - 0
tests/BuildDirTrait.php

@@ -19,6 +19,7 @@ use function dirname, file_exists, file_get_contents, is_file, mkdir, realpath,
  */
 trait BuildDirTrait{
 
+	/** @var string */
 	private const _buildDir = __DIR__.'/../.build/';
 
 	/**