cddb07a176
build container image / cpu (push) Waiting to run
build container image / cuda (push) Waiting to run
build container image / rocm (push) Waiting to run
frontend tests / frontend-tests (push) Waiting to run
openapi checks / openapi-checks (push) Waiting to run
python tests / py3.12: macos-default (push) Waiting to run
python tests / py3.11: windows-cpu (push) Waiting to run
python tests / py3.12: windows-cpu (push) Waiting to run
python tests / py3.11: linux-cpu (push) Waiting to run
python tests / py3.12: linux-cpu (push) Waiting to run
typegen checks / typegen-checks (push) Waiting to run
uv lock checks / uv-lock-checks (push) Waiting to run
frontend checks / frontend-checks (push) Waiting to run
lfs checks / lfs-check (push) Waiting to run
python checks / python-checks (push) Waiting to run
python tests / py3.11: macos-default (push) Waiting to run
docs / deploy (push) Has been cancelled
docs / changes (push) Has been cancelled
docs / check-and-build (push) Has been cancelled
69 lines
2.0 KiB
YAML
69 lines
2.0 KiB
YAML
# Check the `uv` lockfile for consistency with `pyproject.toml`.
|
|
#
|
|
# If this check fails, you should run `uv lock` to update the lockfile.
|
|
|
|
name: 'uv lock checks'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
pull_request:
|
|
types:
|
|
- 'ready_for_review'
|
|
- 'opened'
|
|
- 'synchronize'
|
|
merge_group:
|
|
workflow_dispatch:
|
|
inputs:
|
|
always_run:
|
|
description: 'Always run the checks'
|
|
required: true
|
|
type: boolean
|
|
default: true
|
|
workflow_call:
|
|
inputs:
|
|
always_run:
|
|
description: 'Always run the checks'
|
|
required: true
|
|
type: boolean
|
|
default: true
|
|
|
|
jobs:
|
|
uv-lock-checks:
|
|
env:
|
|
# uv requires a venv by default - but for this, we can simply use the system python
|
|
UV_SYSTEM_PYTHON: 1
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5 # expected run time: <1 min
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: check for changed python files
|
|
if: ${{ inputs.always_run != true }}
|
|
id: changed-files
|
|
# Pinned to the _hash_ for v45.0.9 to prevent supply-chain attacks.
|
|
# See:
|
|
# - CVE-2025-30066
|
|
# - https://www.stepsecurity.io/blog/harden-runner-detection-tj-actions-changed-files-action-is-compromised
|
|
# - https://github.com/tj-actions/changed-files/issues/2463
|
|
uses: tj-actions/changed-files@9426d40962ed5378910ee2e21d5f8c6fcbf2dd96
|
|
with:
|
|
files_yaml: |
|
|
uvlock-pyprojecttoml:
|
|
- 'pyproject.toml'
|
|
- 'uv.lock'
|
|
|
|
- name: setup uv
|
|
if: ${{ steps.changed-files.outputs.uvlock-pyprojecttoml_any_changed == 'true' || inputs.always_run == true }}
|
|
uses: astral-sh/setup-uv@v8.1.0
|
|
with:
|
|
version: '0.6.10'
|
|
enable-cache: true
|
|
|
|
- name: check lockfile
|
|
if: ${{ steps.changed-files.outputs.uvlock-pyprojecttoml_any_changed == 'true' || inputs.always_run == true }}
|
|
run: uv lock --locked # this will exit with 1 if the lockfile is not consistent with pyproject.toml
|
|
shell: bash
|