mirror of
https://github.com/drwetter/testssl.sh.git
synced 2026-06-23 16:57:38 +02:00
24 lines
417 B
YAML
24 lines
417 B
YAML
name: Build Documentation
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "docs/testssl.1.md"
|
|
|
|
jobs:
|
|
build-docs:
|
|
runs-on: ubuntu-26.04
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y pandoc make
|
|
|
|
- name: Build documentation
|
|
working-directory: docs
|
|
run: make
|