Latexmk
ActionsTags
(2)This GitHub Action run latexmk to convert a LaTeX file into a PDF.
Following parameters can be used as step.with
keys:
Name | Type | Default | Description |
---|---|---|---|
format |
String | pdf |
Output format for the LaTeX filename |
filename |
String | main.tex |
Source LaTeX filename to process |
---
name: CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Generate PDF document
uses: hspaans/latexmk-action@v1
with:
format: pdf
filename: article.tex
GitHub Actions has native support for Dependabot,
to enable it on your GitHub repository all you need to do is add the .github/dependabot.yml
file:
---
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
This action is only available for Linux virtual environments.
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.