check uv lockfile

This commit is contained in:
David Soria Parra
2025-02-03 12:33:30 +00:00
parent ce06b6291d
commit a9ae38237d
2 changed files with 34 additions and 0 deletions

25
.github/workflows/check-lock.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Check uv.lock
on:
pull_request:
paths:
- "pyproject.toml"
- "uv.lock"
push:
paths:
- "pyproject.toml"
- "uv.lock"
jobs:
check-lock:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Check uv.lock is up to date
run: uv lock --check