From 9e625a4a292d6de71d7665d82701e85bf27880a7 Mon Sep 17 00:00:00 2001 From: Alex Fournier Date: Thu, 10 Sep 2026 13:32:29 -0700 Subject: [PATCH] ci: skip project builds for static checks Signed-off-by: Alex Fournier --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a2c30382..d0be6d6d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,9 +52,9 @@ jobs: python-version: "3.12" enable-cache: true cache-dependency-glob: "uv.lock" - - run: uv sync --locked + - run: uv sync --locked --no-install-project - name: ruff check - run: uv run ruff check . + run: uv run --no-sync ruff check . # SPDX headers are a hard gate — every Python file must carry the exact # NVIDIA OSRB-required two-line form (SPDX-FileCopyrightText with the @@ -128,9 +128,9 @@ jobs: python-version: "3.12" enable-cache: true cache-dependency-glob: "uv.lock" - - run: uv sync --locked + - run: uv sync --locked --no-install-project - name: mypy - run: uv run mypy switchyard + run: uv run --no-sync mypy switchyard # Unit tests on supported Python versions. Integration/e2e tests are # intentionally deselected here because they may need Docker, live provider