Skip to content

Commit 18dff04

Browse files
committed
[FEAT] - Add CI check to validate 'uv.lock' is up-to-date
1 parent 11dbaa9 commit 18dff04

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@ on:
1010
workflow_dispatch:
1111

1212
jobs:
13+
uv-lock-check:
14+
runs-on: ubuntu-latest
15+
name: "UV Lockfile Sync Validation 🔒"
16+
permissions:
17+
contents: read
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v5
21+
with:
22+
persist-credentials: false
23+
24+
- name: Install uv
25+
uses: astral-sh/setup-uv@v6
26+
27+
- name: Check uv.lock sync status
28+
run: uv lock --locked
29+
1330
ruff:
1431
runs-on: ubuntu-latest
1532
name: "ruff on code"

0 commit comments

Comments
 (0)