feat: sync SDK with latest OpenAPI spec 2026-03-25 #198
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
| # Based on https://docs.astral.sh/uv/guides/integration/github/#multiple-python-versions | |
| name: Lint | |
| # trigger on PRs and main branches | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "0.9.11" | |
| - name: Install dependencies | |
| run: uv sync --dev | |
| - name: Lint | |
| run: | | |
| uv run ruff check --output-format=github |