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 748e22c commit bfffe60
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Copyright (C) Daniel Stenberg, <[email protected]>, et al.
#
# SPDX-License-Identifier: curl

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

permissions: {}

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

- name: install pandoc
run: sudo apt-get install pandoc

- name: build pdf
run: make pdf

0 comments on commit bfffe60

Please sign in to comment.