Skip to content

fix: update validation command references to st-validate-local (#444) #305

fix: update validation command references to st-validate-local (#444)

fix: update validation command references to st-validate-local (#444) #305

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
- develop
workflow_dispatch:
permissions:
contents: write
concurrency:
group: docs
cancel-in-progress: false
jobs:
deploy:
name: "deploy: docs"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
uses: wphillipmoore/standard-actions/actions/python/setup@develop
with:
python-version: "3.14"
cache-prefix: "uv-docs"
- name: Install dependencies
run: uv sync --frozen --group docs
- name: Deploy docs
uses: wphillipmoore/standard-actions/actions/docs-deploy@develop
with:
version-command: uv run python -c "from importlib.metadata import version; v=version('pymqrest'); print('.'.join(v.split('.')[:2]))"
mike-command: uv run mike
checkout-common: "true"