badge #11
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: Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install TinyTeX and required TeX packages, test | |
run: | | |
sh tools/install-bin-unix.sh | |
export PATH=/home/runner/.TinyTeX/bin/x86_64-linux/:$PATH | |
echo $PATH | |
tlmgr install comment polyglossia xkeyval metalogo fonts-churchslavonic libertine luacolor lettrine hypdoc hyphen-russian hyphen-churchslavonic | |
make test | |
make docs |