Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
add docs workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pipliggins committed Nov 20, 2024
1 parent e83269e commit 4f0cef5
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: docs

on:
workflow_dispatch:
push:
branches:
- main
pull_request:

jobs:
docs:
name: Build documentation and check links
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Build documentation
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r docs/requirements.txt
cd docs
make html

0 comments on commit 4f0cef5

Please sign in to comment.