DOC: include missing pages to reference docs #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: doctests | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
doctests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Build treams | |
run: python -m pip install -e . | |
- name: Run doctests | |
run: | | |
python -m pip install treams[docs,io] | |
sphinx-build -b doctest docs docs/_build/doctest |