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
12 changes: 9 additions & 3 deletions .github/workflows/dependency-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,15 @@ jobs:

- name: Upgrade dependencies
run: |
uv lock --upgrade
uv pip compile pyproject.toml -o requirements.txt
uv pip compile pyproject.toml --all-extras --all-groups -o requirements-dev.txt
# 1. Solve the environment and upgrade everything
uv lock --upgrade

# 2. Export the lockfile to requirements formats
# --no-dev gives you the production stack
uv export --no-dev -o requirements.txt

# --all-extras and --dev (or --all-groups) gives you the full stack
uv export --all-extras --dev -o requirements-dev.txt

- name: Install the project
run: uv sync --all-extras --dev
Expand Down
Loading