-
Notifications
You must be signed in to change notification settings - Fork 1
Add Python SDK CI workflow #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
e752944
4fdf70e
7692594
ac1ce09
206b44a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| name: "CI: Python SDK" | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| check: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| python-version: ["3.11", "3.12", "3.13"] | ||
| env: | ||
| UV_PYTHON: ${{ matrix.python-version }} | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - uses: astral-sh/setup-uv@v8.0.0 | ||
| - run: uv python install ${{ matrix.python-version }} | ||
| - run: uv sync --frozen | ||
| - run: uv run ruff check . | ||
|
Comment on lines
+21
to
+24
|
||
| - run: uv run ruff format --check . | ||
| - run: uv run pyright | ||
| - run: uv run pytest --cov=decibel --cov-report=xml --cov-report=term | ||
| - run: uv build | ||
Uh oh!
There was an error while loading. Please reload this page.