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
6 changes: 5 additions & 1 deletion .github/workflows/build-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
- name: Build otdf-python wheel using uv
run: |
uv sync --frozen
uv build
uv build --wheel --package otdf-python
shell: bash

- name: Check wheel with twine
run: uvx twine check dist/*
shell: bash

- name: Find built wheel
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ jobs:
uv build --wheel --package otdf-python
shell: bash

- name: Check wheel with twine
run: uvx twine check dist/*
shell: bash

- name: Find built wheel
id: find_wheel
run: |
Expand Down
Loading