remove catn related scripts. #9
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
name: Automated testing | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
l3build: | |
runs-on: ubuntu-latest | |
steps: | |
# Boilerplate | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# We need Ghostscript for XeTeX tests. | |
- run: sudo apt-get update && sudo apt-get install ghostscript | |
- name: Install TeX Live | |
uses: zauguin/install-texlive@v3 | |
with: | |
packages: > | |
l3build latex latex-bin xetex luatex latex-bin-dev fontspec luatexbase etoolbox xkeyval | |
- name: Install Polyglossia | |
run: l3build install | |
- name: Check test files | |
run: l3build check |