Skip to content

Commit

Permalink
ci: add check for sphinx autodocs
Browse files Browse the repository at this point in the history
  • Loading branch information
jkhsjdhjs committed Dec 7, 2023
1 parent 662ccf6 commit 8cb2a03
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,24 @@ jobs:
run: |
pycodestyle --count --max-line-length 120 basyx test
docs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r docs/add-requirements.txt
- name: Check documentation for errors
run: |
SPHINXOPTS="-a -E -n -W --keep-going" make -C docs html
package:
runs-on: ubuntu-latest

Expand Down

0 comments on commit 8cb2a03

Please sign in to comment.