Skip to content

Commit

Permalink
adding workflow testing doc
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-coscia authored and ndem0 committed Oct 10, 2024
1 parent 24317b6 commit bb44c02
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/testing_doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test Sphinx Documentation Build

on:
push:
branches:
- main
paths:
- 'docs/**'
pull_request:
branches:
- main
paths:
- 'docs/**'

jobs:
docs:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: ammaraskar/[email protected]
pre-build-command: "python3 -m pip install .[docs]"
docs-folder: "docs/"

- name: Build Sphinx documentation
run: |
cd docs
make html

0 comments on commit bb44c02

Please sign in to comment.