Skip to content

Add .idea/ to gitignore for PyCharm (#100) #51

Add .idea/ to gitignore for PyCharm (#100)

Add .idea/ to gitignore for PyCharm (#100) #51

Workflow file for this run

name: Build and Deploy Documentation
on:
push:
branches:
- main
jobs:
build-and-deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for .git-restore-mtime to work correctly
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[docs]
- name: Build MkDocs site (general documentation)
run: mkdocs build --config-file mkdocs.yml --site-dir ./site
- name: Build Sphinx docs (api documentation)
run: |
sphinx-build -b html docs/api site/api
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
force_orphan: true