Skip to content

Commit 484a656

Browse files
Add error handling to lockfile check step
- Add 'set -e' to ensure script fails on any command error - Ensures uv lock failures are properly caught and reported Co-authored-by: jacksonpradolima <[email protected]>
1 parent 1c87d46 commit 484a656

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/code_quality.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
3030
- name: Check lockfile freshness
3131
run: |
32+
set -e
3233
if ! uv lock --check; then
3334
echo "::error::uv.lock is out of sync with pyproject.toml"
3435
echo "Running 'uv lock' to show what needs to be updated..."

0 commit comments

Comments
 (0)