Skip to content

Update production workflow for full uv #623

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 1 commit into from
Jul 22, 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
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci_production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:

- name: Install package
run: |
uv pip install --system --upgrade '.[test]'
uv pip list --system
uv venv
uv pip install --upgrade '.[test]'
Copy link
Preview

Copilot AI Jul 15, 2025

Choose a reason for hiding this comment

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

Add --no-cache-dir to the pip install command (e.g., uv pip install --no-cache-dir --upgrade '.[test]') to reduce cache overhead and speed up CI runs.

Suggested change
uv pip install --upgrade '.[test]'
uv pip install --no-cache-dir --upgrade '.[test]'

Copilot uses AI. Check for mistakes.

uv pip list

- name: Run example
working-directory: examples
run: python UprootRaw_Dict.py
run: uv run python UprootRaw_Dict.py
Loading