Skip to content

Bump uv from 0.2.37 to 0.3.3 #96

Bump uv from 0.2.37 to 0.3.3

Bump uv from 0.2.37 to 0.3.3 #96

Workflow file for this run

name: dependencies
on:
pull_request:
paths:
- pyproject.toml
- requirements*
push:
branches: [main]
# Only allow one instance of this workflow for each PR.
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
compile:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: '.github/workflows/.python-version'
cache: 'pip'
- run: python -m pip install uv
- run: uv pip compile --output-file=requirements.txt --extra=dev pyproject.toml
- run: git diff --color=always --exit-code