An open API service indexing awesome lists of open source software.

https://github.com/sentient-codebot/render-tex


https://github.com/sentient-codebot/render-tex

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# render-tex

## Example
```yaml
name: Render LaTeX document

on: [push]

jobs:
render_latex:
runs-on: ubuntu-latex
name: render
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Render
uses: actions/render-tex
with:
run: |
make
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
path: ./*.pdf
```