mirror of
https://github.com/aljazceru/mcp-python-sdk.git
synced 2025-12-19 14:54:24 +01:00
check uv lockfile
This commit is contained in:
25
.github/workflows/check-lock.yml
vendored
Normal file
25
.github/workflows/check-lock.yml
vendored
Normal 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
|
||||||
@@ -13,3 +13,12 @@ repos:
|
|||||||
- id: ruff-format
|
- id: ruff-format
|
||||||
- id: ruff
|
- id: ruff
|
||||||
args: [--fix, --exit-non-zero-on-fix]
|
args: [--fix, --exit-non-zero-on-fix]
|
||||||
|
|
||||||
|
- repo: local
|
||||||
|
hooks:
|
||||||
|
- id: uv-lock-check
|
||||||
|
name: Check uv.lock is up to date
|
||||||
|
entry: uv lock --check
|
||||||
|
language: system
|
||||||
|
files: ^(pyproject\.toml|uv\.lock)$
|
||||||
|
pass_filenames: false
|
||||||
|
|||||||
Reference in New Issue
Block a user