docs: add MiSaren as a contributor for code, example, and ideas #24
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: Check docs on pull request | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest # Easy to use GitHub hosted runner, self hosted runner would require manual configurations | |
steps: | |
- uses: actions/checkout@v2 # Checks out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: ammaraskar/sphinx-action@master | |
with: | |
build-command: "sphinx-build -b html ./source/ _build" | |
docs-folder: "docs/" | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: DocumentationHTML | |
path: docs/_build | |