Skip to content

docs: make public maintenance boundary self-contained (#99) #150

docs: make public maintenance boundary self-contained (#99)

docs: make public maintenance boundary self-contained (#99) #150

Workflow file for this run

name: SDK quality
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
concurrency:
group: python-sdk-quality-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: "3.11"
cache: pip
- run: python -m pip install --upgrade pip
- run: python -m pip install -e '.[dev]'
- run: ruff check src tests
- run: python scripts/check_mypy_baseline.py
- run: pytest -q