Latexmk
ActionsTags
(2)This GitHub Action run latexmk to convert a LaTeX file into a PDF.
Indicates the output format.
This parameter is optional; by default it will be pdf
Indicates the LaTeX filename to process.
This parameter is optional; by default it will be main.yml
---
name: CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Generate PDF document
uses: hspaans/[email protected]
with:
format: pdf
filename: article.tex
Latexmk is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.