Skip to content

docs(agents): document full-surface command coverage additions #212

docs(agents): document full-surface command coverage additions

docs(agents): document full-surface command coverage additions #212

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
check:
name: Lint, typecheck, test (py${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --python ${{ matrix.python-version }}
- name: Ruff lint
run: uv run ruff check tesla_fleet_api tests
- name: Pyright
run: uv run pyright tesla_fleet_api
- name: Pytest
run: uv run pytest tests -q