Skip to content

Commit

Permalink
CI/pdf: verify that building a PDF works
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Dec 14, 2023
1 parent 5cb3159 commit 71a2ca0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright (C) Daniel Stenberg, <[email protected]>, et al.

name: pdf
on:
push:
branches:
- master
paths:
- '**.md'
pull_request:
branches:
- master

permissions: {}

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: install prereqs
run: |
sudo apt-get update
sudo apt-get install pandoc texlive-latex-base texlive-latex-recommended
- name: build pdf
run: make pdf

0 comments on commit 71a2ca0

Please sign in to comment.