Skip to content

Commit

Permalink
Test doc builds in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmckee committed Dec 1, 2023
1 parent 903027c commit 51b0c01
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,22 @@ jobs:

- name: Run tests
run: python -m tox -e py -- --verbose

docs:
# Test documentation builds.
# This environment mirrors the ReadTheDocs build environment.
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Install tox
run: python -m pip install tox

- name: Run tests
run: python -m tox -e docs

0 comments on commit 51b0c01

Please sign in to comment.