Build docs #93
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: Pytket Pyquil Docs | |
on: | |
push: | |
branches: | |
- 'docs/**' | |
schedule: | |
# 04:00 every Tuesday morning | |
- cron: '0 4 * * 2' | |
jobs: | |
docs: | |
name: build docs | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Upgrade pip and install wheel | |
run: pip install --upgrade pip wheel | |
- name: Install pytket pyquil | |
run: | | |
pip install . | |
- name: Install docs dependencies | |
run: | | |
pip install -r .github/workflows/docs/requirements.txt | |
- name: Test building docs | |
timeout-minutes: 20 | |
run: | | |
cd .github/workflows/docs | |
mkdir extensions | |
./build-docs -d ${GITHUB_WORKSPACE}/.github/workflows/docs/extensions | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: pytket-extension-docs | |
path: .github/workflows/docs/extensions/ |