Skip to content

Commit

Permalink
Merge branch 'carltongibson:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Mar 18, 2024
2 parents 2e9ffea + 94cc999 commit 3effe4a
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Docs

on:
pull_request:
paths:
- 'docs/**'
- '.github/workflows/docs.yml'
push:
branches:
- main
paths:
- 'docs/**'
- '.github/workflows/docs.yml'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
docs:
runs-on: ubuntu-22.04
name: docs
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'

- run: python -m pip install -e .[docs]

- name: Build docs
run: |
cd docs
make json
# sphinx-build -b spelling -n -q -W --keep-going -d _build/doctrees -D language=en_US -j auto . _build/spelling

0 comments on commit 3effe4a

Please sign in to comment.