Skip to content
Closed
Changes from 1 commit
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: 11 additions & 1 deletion .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
outputs:
docker-tag: ${{ steps.docker-tag.outputs.docker-tag }}
env:
UV_FROZEN: true
PYTHON_APP_ENVIRONMENT: development
CI: true # Enable pytest CI mode
steps:
Expand All @@ -34,10 +35,19 @@ jobs:
python-version-file: .python-version

- name: Install Python packages
run: uv sync --locked
run: |
unset UV_FROZEN
uv sync --locked
shell: bash

- name: Install Python packages2
run: |
uv sync --locked
shell: bash

Copy link

Copilot AI Dec 7, 2025

Choose a reason for hiding this comment

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

The step name "Install Python packages2" appears to be a placeholder or temporary name. This should be renamed to something more descriptive that explains why this step exists separately from the first installation step, or if this is duplicated, one of the steps should be removed.

Suggested change
- name: Install Python packages2
run: |
uv sync --locked
shell: bash

Copilot uses AI. Check for mistakes.
- name: Check code
env:
UV_FROZEN: true
run: make check-code
shell: bash

Expand Down
Loading