We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 28f2c1d + 4dd7f29 commit 1bf4829Copy full SHA for 1bf4829
.github/workflows/ci.yml
@@ -16,10 +16,16 @@ jobs:
16
runs-on: ubuntu-latest
17
strategy:
18
matrix:
19
- python-version: ["3.9", "3.10", "3.11"]
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
20
21
steps:
22
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
23
+
24
+ - name: Python setup
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: ${{ matrix.python-version }}
28
+ check-latest: true
29
30
- name: Install
31
run: |
@@ -36,5 +42,5 @@ jobs:
36
42
- name: Test TL current
37
43
38
44
python -m install_texlive -c="-a" -p $HOME/texlive -v -f tex-packages.txt
39
- export PATH=$HOME/texlive/2024/bin/x86_64-linux:$PATH
45
+ export PATH=$HOME/texlive/2025/bin/x86_64-linux:$PATH
40
46
latexmk -lualatex -halt-on-error -interaction=nonstopmode hello.tex
0 commit comments