-
Notifications
You must be signed in to change notification settings - Fork 2.7k
60 lines (50 loc) · 1.75 KB
/
Copy pathformat.yaml
File metadata and controls
60 lines (50 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: format
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- "**"
paths-ignore:
- "docs/**"
concurrency:
group: build-format-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
ruff-format:
name: "Code quality checks"
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Set up Python
run: uv python install 3.12
- name: Install development dependencies
# `--all-extras` (matching the dev setup in README.md) so pyright can
# resolve types from various optional dependencies.
run: uv sync --group dev --all-extras --no-extra gstreamer --no-extra local
- name: Ruff formatter
id: ruff-format
run: uv run ruff format --diff
- name: Ruff linter (all rules)
id: ruff-check
run: uv run ruff check
- name: Type check (pyright)
id: pyright
run: uv run pyright
- name: CLI registry drift check
id: registry-drift
# Regenerate the CLI's service registry against the source and fail if it drifted.
# This runs here because regenerating _configs.py introspects constructor
# signatures and needs the service SDKs, which this job already installs via
# --all-extras. Catches both import-path and constructor-signature drift, and
# backstops commits made with --no-verify or without the pre-commit hook.
run: |
uv run scripts/cli/update_registry.py
git diff --exit-code src/pipecat/cli/registry/_imports.py src/pipecat/cli/registry/_configs.py