Install TeX Live through teatimeguest/setup-texlive-action@v3
#503
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on https://github.com/CTeX-org/ctex-kit/blob/master/.github/workflows/test.yml | |
name: Test tabularray in TeX Live | |
on: [push, pull_request] | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install TeX Live | |
uses: teatimeguest/setup-texlive-action@v3 | |
with: | |
package-file: .github/workflows/texlive.package | |
update-all-packages: true | |
- name: Test tabularray with l3build | |
run: | | |
l3build check --debug --halt-on-error --show-log-on-error | |
- name: Install pdftoppm | |
run: | |
sudo apt-get install poppler-utils | |
- name: Test tabularray with ppmcheckpdf | |
run: | | |
texlua buildend.lua | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install TeX Live | |
uses: teatimeguest/setup-texlive-action@v3 | |
with: | |
packages: wintools.windows # for pdftoppm | |
package-file: .github/workflows/texlive.package | |
update-all-packages: true | |
- name: Test tabularray with l3build | |
run: | | |
l3build check --debug --halt-on-error --show-log-on-error | |
- name: Test tabularray with ppmcheckpdf | |
run: | | |
texlua buildend.lua | |
- name: Upload png and md5 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: png-and-md5 | |
path: | | |
testfiles/*.png | |
testfiles/*.md5 |