This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
Update intel.rst #66
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: Build Docs | |
on: | |
pull_request: | |
branches: ['main'] | |
push: | |
branches: ['main'] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: pip | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
python -m pip install -r docs/requirements.txt | |
- name: Build docs | |
run: | | |
sphinx-build -W -b html docs docs/build/html |