added bash_run.rst and examples file back #30
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: Make docs | |
on: | |
push: | |
branches: | |
main | |
pull_request: | |
branches: | |
main | |
env: | |
POETRY_HOME: ${{vars.POETRY_HOME}} | |
POETRY: ${{vars.POETRY}} | |
jobs: | |
docs: | |
name: Make docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install Poetry and dependencies | |
run: ./scripts/poetry-install.sh | |
- name: Check docs | |
working-directory: ./docs | |
run: $POETRY run make html |