CI: testing

This commit is contained in:
Nicolas Kruse 2025-05-19 15:52:09 +02:00
parent 2b5fde630b
commit f8c59c3c4b
1 changed files with 9 additions and 4 deletions

View File

@ -70,15 +70,20 @@ jobs:
run: | run: |
dir "C:\Program Files\MiKTeX\miktex\bin\x64\*" dir "C:\Program Files\MiKTeX\miktex\bin\x64\*"
- name: Add miktex to PATH
run: |
$env:Path += ";C:\Program Files\MiKTeX\miktex\bin\x64"
- name: Show path variable - name: Show path variable
run: echo $env:PATH run: echo $env:PATH
- name: Install XeTeX and other required packages - name: Install XeTeX and other required packages
run: | run: |
$miktexPath = "C:\Program Files\MiKTeX\miktex\bin\x64" miktex-console --install xetex --yes
$env:Path += ";$miktexPath" miktex-console --update --yes
& miktex-console --install xetex --yes
& miktex-console --update --yes - name: test xelatex
run: xelatex --version
- name: Install Python dependencies - name: Install Python dependencies
run: | run: |