All checks were successful
ci/woodpecker/push/unit Pipeline was successful
## What's New? - Updated the SDK to support v0.2.0 - Improved the test suite - Minor bugfix - No breaking changes Co-authored-by: Tasnim Kabir Sadik <tksadik92@gmail.com> Reviewed-on: #9 Co-authored-by: pptx704 <rafeed@omukk.dev> Co-committed-by: pptx704 <rafeed@omukk.dev>
12 lines
262 B
YAML
12 lines
262 B
YAML
# Unit tests — every push and pull_request, all branches.
|
|
when:
|
|
- event: push
|
|
- event: pull_request
|
|
|
|
steps:
|
|
unit-tests:
|
|
image: ghcr.io/astral-sh/uv:python3.13-bookworm
|
|
commands:
|
|
- uv sync --dev
|
|
- uv run pytest -m "not integration" -v
|