Skip to content
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
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,14 @@ jobs:
uv run --no-sync ruff check --exclude external .

- name: Check QPK pin consistency
run: uv run --no-sync python scripts/check_qpk_pin_consistency.py
run: |
set -euo pipefail
uv run --no-sync python external/QuantPlatformKit/scripts/check_qpk_pin_consistency.py \
--root . \
--pin-file external/QuantPlatformKit/QPK_PIN

- name: Ensure uv.lock matches pyproject.toml
run: uv lock --check

- name: Run unit tests
run: |
Expand Down
Loading