Skip to content

Commit 1bf4829

Browse files
authored
Merge pull request #5 from maxnoe/fix_ci_config
Fix ci config after TL2025 release
2 parents 28f2c1d + 4dd7f29 commit 1bf4829

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/ci.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,16 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11"]
19+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- 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
2329

2430
- name: Install
2531
run: |
@@ -36,5 +42,5 @@ jobs:
3642
- name: Test TL current
3743
run: |
3844
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
4046
latexmk -lualatex -halt-on-error -interaction=nonstopmode hello.tex

0 commit comments

Comments
 (0)