feat: Add telemetry to SDK #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Python SDK CI | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| lint-stage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - uses: astral-sh/setup-uv@9cfd02964306b527feff5fee75acfd028cce4260 | |
| with: | |
| activate-environment: true | |
| - name: Verify uv.lock is up-to-date | |
| run: uv lock --check | |
| - name: Install dependencies with uv | |
| run: uv sync | |
| - name: Verify basedpyright baseline | |
| run: uv run --frozen basedpyright |