Miscellaneous #871
Workflow file for this run
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: Test Documentation | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
test-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Pandoc and uv | |
run: | | |
sudo apt-get install pandoc | |
curl -LsSf https://astral.sh/uv/install.sh | sh | |
- name: Install model | |
run: USE_CYTHON=1 uv sync --frozen --extra docs | |
- name: Build documentation | |
run: | | |
cd doc | |
make html |