feat: add request cancellation and in-flight request tracking #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |