8000 Release wf updates by jyeakley · Pull Request #33 · genomoncology/biomcp · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Release wf updates #33

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

Merged
merged 4 commits into from
Jun 20, 2025
Merged
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
8000
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
PYTHON_VERSION: "3.12"
UV_VERSION: "0.4.0"
UV_VERSION: "0.4.29"

jobs:
release:
Expand All @@ -33,19 +33,19 @@ jobs:

- name: Install dependencies
run: |
uv sync --all-extras --group dev
uv sync --group dev

- name: Run tests
run: |
uv run python -m pytest
uv run python -m pytest tests --cov --cov-config=pyproject.toml --cov-report=xml

- name: Build package
run: |
uv build
uvx --from build pyproject-build --installer uv

- name: Check package
run: |
uv run twine check dist/*
uvx twine check dist/*

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Install dependencies
run: |
uv sync --all-extras --group dev
uv sync --group dev

- name: Build documentation
run: |
Expand Down
0