Skip to content

[AgentGateway] feat: Multiple Linear Chains for Gateway Sessions #62

[AgentGateway] feat: Multiple Linear Chains for Gateway Sessions

[AgentGateway] feat: Multiple Linear Chains for Gateway Sessions #62

Workflow file for this run

name: docs
on:
pull_request:
paths:
- "docs/**"
- "*.md"
- ".github/workflows/docs.yml"
push:
branches:
- main
paths:
- "docs/**"
- "*.md"
- ".github/workflows/docs.yml"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
permissions:
contents: read
jobs:
docs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install docs dependencies
run: python -m pip install --upgrade pip -r docs/requirements.txt
- name: Build docs
run: make -C docs clean html SPHINXOPTS="--keep-going -W"