Skip to content

Docstrings for module.ui and module.server #138

Docstrings for module.ui and module.server

Docstrings for module.ui and module.server #138

Workflow file for this run

name: Build API docs
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
version: 1.3.340
- name: Install dependencies
run: |
cd docs
make deps
- name: Run quartodoc
run: |
cd docs
make quartodoc
- name: Build site
run: |
cd docs
make site