Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ueberfuhr authored Sep 24, 2024
1 parent bf699cf commit a17e4cc
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Continuous Integration

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# https://github.com/marketplace/actions/markdown-link-check
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
# https://github.com/marketplace/actions/markdown-to-pdf-and-html
- uses: baileyjm02/markdown-to-pdf@v1
with:
input_path: .
output_dir: generated-pdfs
build_html: false
- uses: actions/upload-artifact@v3
with:
name: pdfs
path: generated-pdfs

0 comments on commit a17e4cc

Please sign in to comment.