Skip to content

chore(deps): bump actions/checkout from 5 to 6 #1412

chore(deps): bump actions/checkout from 5 to 6

chore(deps): bump actions/checkout from 5 to 6 #1412

Workflow file for this run

name: Tests for Docs
on:
push:
branches: [main]
paths:
- 'src/**'
- 'tests/**'
- 'docs/**'
- '.github/workflows/**'
- 'pyproject.toml'
pull_request:
paths:
- 'src/**'
- 'tests/**'
- 'docs/**'
- '.github/workflows/**'
- 'pyproject.toml'
workflow_dispatch:
jobs:
run-docs-tests:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v6
- name: Install the latest version of uv and set the python version to 3.13
uses: astral-sh/setup-uv@v7
with:
python-version: 3.13
activate-environment: true
- name: Install
run: |
uv sync --group tests --extra all --extra a2a --extra composio
- name: Run Documentation tests
run: pytest tests/docs -v --cov --cov-report=xml
- name: Upload coverage reports to Codecov
if: always()
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}