Skip to content

Commit

Permalink
new custom docs check action
Browse files Browse the repository at this point in the history
  • Loading branch information
bdoolittle committed Jul 25, 2024
1 parent 4856c6d commit f6c3c00
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/check_documentation2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Check Documentation two
on:
pull_request:
branches: [ main ]

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install -r requirements.txt
pip install -r docs/requirements.txt
pip install sphinx
- name: Build Documentation
run: |
sphinx-build -b html docs/source/ docs/build/html

0 comments on commit f6c3c00

Please sign in to comment.