Skip to content

Commit 2d8f9f4

Browse files
authored
build: add CI job to verify uv.lock consistency (#927)
* build: add CI job to verify uv.lock consistency
1 parent cd74c23 commit 2d8f9f4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ concurrency:
99
group: ci-${{ github.ref }}
1010
cancel-in-progress: true
1111
jobs:
12+
check-uv-lockfile:
13+
runs-on: ubuntu-24.04
14+
steps:
15+
- uses: actions/checkout@v6
16+
- name: Install uv and set the Python version
17+
uses: astral-sh/setup-uv@v7
18+
with:
19+
enable-cache: true
20+
- name: Check lockfile is consistent with pyproject.toml
21+
run: uv lock --check
1222
test:
1323
uses: ./.github/workflows/testing.yml
1424
build-docs:

0 commit comments

Comments
 (0)