Skip to content

[WIP] Upgrade and clean #4

[WIP] Upgrade and clean

[WIP] Upgrade and clean #4

Workflow file for this run

name: Run tests
env:
TEMPLATEDIR: ~/.texlive/texmf-local/tex/latex/latex-template
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install dependencies
run: |
sudo apt-get install imagemagick librsvg2-bin
pip install Pygments
- name: Use cache
id: cache-install
uses: actions/cache@v3
with:
path: |
${HOME}/.texlive
key: texlive
- name: Set up TeXLive
run: |
./scripts/install_font.sh
./scripts/install_texlive.sh
echo "PATH=$HOME/.texlive/bin/x86_64-linux:$PATH" >> $GITHUB_ENV
- name: Test Lua
run: |
cd tests
make lua-test
- name: Test LaTeX
run: |
mkdir -p ${TEMPLATEDIR}
cp -r ${PWD} ${TEMPLATEDIR}
texhash
make tests
- name: Remove template from TeXLive before caching
if: steps.cache-install.outputs.cache-hit != 'true'
run: |
rm ${TEMPLATEDIR}
texhash