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: 4 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ name: docs

on:
push:
tags:
- "v*"
branches:
- main
paths:
- 'docs/**'
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] If your docs build depends on MkDocs or top-level config files, consider including them in the path filter so changes to configuration also trigger the docs workflow (e.g., mkdocs.yml, README.md).

Suggested change
- 'docs/**'
- 'docs/**'
- 'mkdocs.yml'
- 'README.md'

Copilot uses AI. Check for mistakes.

jobs:
build-docs:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: Publish to pypi

on:
push:
tags:
- "v*"
release:
types: [published]

jobs:
publish:
Expand All @@ -17,7 +16,7 @@ jobs:
with:
python-version-file: "pyproject.toml"

- name: Install the latest version of uv
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest ]
os: [windows-latest, macos-latest, ubuntu-latest]
python: ["3.11", "3.12", "3.13"]

env:
Expand All @@ -39,13 +39,13 @@ jobs:
DISPLAY: :42
run: uv run pytest --cov --color=yes --cov-report=xml

# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v5
# with:
# name: coverage
# verbose: true
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
name: coverage
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Comment on lines +47 to +48
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Prefer passing the Codecov token via the action's input rather than as an environment variable to align with the action interface and reduce exposure to child steps. Example: add with: token: ${{ secrets.CODECOV_TOKEN }} and drop the env block.

Suggested change
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
token: ${{ secrets.CODECOV_TOKEN }}

Copilot uses AI. Check for mistakes.

- name: Build Wheel
run: "uv build"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "openDVP"
version = "0.7.3"
version = "0.7.4"
description = "open-sourced Deep Visual Proteomics toolkit"
readme = "README.md"
requires-python = ">=3.11, <3.14"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.