DI: path add syntax changed

This commit is contained in:
Nicolas Kruse 2025-06-10 09:47:18 +02:00
parent ecde842849
commit 38342562d6
1 changed files with 4 additions and 4 deletions

View File

@ -43,16 +43,16 @@ jobs:
robocopy miktex-portable C:\tmp\test_miktex\miktex-portable /E /NFL /NDL robocopy miktex-portable C:\tmp\test_miktex\miktex-portable /E /NFL /NDL
if ($LASTEXITCODE -eq 1) { exit 0 } if ($LASTEXITCODE -eq 1) { exit 0 }
- name: Add miktex and git tools to PATH - name: Add miktex to PATH
run: | run: |
echo "PATH=$PATH;C:\tmp\test_miktex\miktex-portable\texmfs\install\miktex\bin\x64\" | Out-File -FilePath $env:GITHUB_ENV -Append echo "PATH=$PATH;C:\tmp\test_miktex\miktex-portable\texmfs\install\miktex\bin\x64;C:\Program Files\Git\usr\bin" | Out-File -FilePath $env:GITHUB_ENV -Append
echo "PATH=$PATH;C:\Program Files\Git\usr\bin\" | Out-File -FilePath $env:GITHUB_ENV -Append
- name: test xelatex - name: test xelatex
run: xelatex --version run: xelatex --version
- name: Install Python dependencies - name: Install Python dependencies
run: pip install -e .[dev] run: |
python -m pip install -e .[dev]
- name: Run tests with pytest - name: Run tests with pytest
run: pytest run: pytest