Skip to content

Commit

Permalink
ENH: Add a GHA workflow to build docs
Browse files Browse the repository at this point in the history
Add a GHA workflow to build the documentation.
  • Loading branch information
jhlegarreta committed Jul 17, 2024
1 parent 66bde81 commit 3e14de5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build docs

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build_docs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ['3.10']

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[extra]
pip install .[doc]
- name: Build documentation
run: |
cd doc
make -C . html-no-examples

0 comments on commit 3e14de5

Please sign in to comment.