Skip to content

refactor(examples): Do not include examples in distribution. #4

refactor(examples): Do not include examples in distribution.

refactor(examples): Do not include examples in distribution. #4

Workflow file for this run

name: Generate Documentation
on:
push:
branches: [main]
tags: ["v*"]
jobs:
generate-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install -r requirements-dev.txt
python -m pip install .
- name: Generate docs
run: make docs-html
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: docs
path: docs/build/html