Skip to content

#30 opts parsing

#30 opts parsing #178

Workflow file for this run

name: l3build
on:
push:
branches: master
pull_request:
branches: master
jobs:
l3build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-12]
steps:
- uses: actions/checkout@v3
- run: sudo apt-get -y install ghostscript
if: matrix.os == 'ubuntu-20.04'
- uses: teatimeguest/setup-texlive-action@v2.6.0
with:
update-all-packages: true
package-file: DEPENDS.txt
packages: scheme-basic xetex ffcode libertine microtype hypdoc l3build href-ul newtx biblatex biber verbatimcopy pgfopts
- run: l3build ctan --show-log-on-error --halt-on-error
- run: ./tests.pl
- uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
branch: gh-pages
folder: build/distrib/tds/tex/latex
clean: true
if: github.ref == 'refs/heads/master' && matrix.os == 'ubuntu-20.04'