Skip to content

Add parallel test again #54

Add parallel test again

Add parallel test again #54

Workflow file for this run

name: Docu Build
on: [push, pull_request, workflow_dispatch]
permissions:
contents: write
jobs:
docs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install .[docs] --prefer-binary
- name: Create CLI docs
run: |
python docs/cli/generate_cli_command_docs.py
- name: Sphinx build
run: |
sphinx-build -E -W -b html docs _build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/
force_orphan: true