Skip to content

Document every example operation with exact API call details #5

Document every example operation with exact API call details

Document every example operation with exact API call details #5

Workflow file for this run

name: docs-check
on:
pull_request:
push:
branches:
- master
- stable
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install docs dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
- name: Build docs (strict)
run: mkdocs build --strict