chore: add lockfile check step to CI workflows

This commit is contained in:
Barabazs
2025-05-03 16:19:32 +02:00
parent b2d50a027b
commit 108bd0c400
2 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,9 @@ jobs:
version: "0.5.14"
python-version: "3.9"
- name: Check if lockfile is up to date
run: uv lock --check
- name: Build package
run: uv build

View File

@ -23,6 +23,9 @@ jobs:
version: "0.5.14"
python-version: ${{ matrix.python-version }}
- name: Check if lockfile is up to date
run: uv lock --check
- name: Install the project
run: uv sync --all-extras