Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,25 @@ on:
- "v*"

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- run: uv python install 3.12
- run: uv sync --all-extras
- run: uv run ruff format --check .
- run: uv run ruff check .
- run: uv run pytest

release:
needs: test
runs-on: ubuntu-latest
permissions:
id-token: write # Required for trusted publishing
id-token: write

steps:
- uses: actions/checkout@v4
Expand All @@ -27,4 +42,3 @@ jobs:

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "edgee"
version = "0.1.1"
version = "1.0.0"
description = "Lightweight Python SDK for Edgee AI Gateway"
readme = "README.md"
license = "Apache-2.0"
Expand Down
Loading