Skip to content

feat: Slice 1 — Python client library (define + run pipelines in code, over gRPC) #1

feat: Slice 1 — Python client library (define + run pipelines in code, over gRPC)

feat: Slice 1 — Python client library (define + run pipelines in code, over gRPC) #1

Workflow file for this run

name: lint
on:
push:
branches: [main]
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- run: uv sync --all-extras
- run: uv run ruff format --check .
- run: uv run ruff check .
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- run: uv sync --all-extras
- run: uv run mypy