📝 [Documentation] Add command line examples and templates for importing data #2500
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: Documentation | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'docs/**' | |
pull_request: | |
paths: | |
- 'docs/**' | |
release: | |
types: | |
- created | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
jobs: | |
doc: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/python-cache-requirements | |
with: | |
requirements: docs/requirements.txt | |
- name: Build doc | |
run: | | |
cd docs/ | |
make html SPHINXOPTS="-W" |