From e6edee9704267b8eee850e7e4db24ac47abb0103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 6 Feb 2026 15:09:21 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Tweak=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c4ee0ef0c..f362a45ec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,7 +51,9 @@ jobs: python-version: [ "3.14" ] uv-resolution: - highest - starlette-src: [ true, false ] + starlette-src: + - starlette-pypi + - starlette-git include: - os: ubuntu-latest python-version: "3.9" @@ -79,7 +81,7 @@ jobs: python-version: "3.14" coverage: coverage uv-resolution: highest - starlette-src: true + starlette-src: starlette-git fail-fast: false runs-on: ${{ matrix.os }} env: @@ -106,7 +108,7 @@ jobs: - name: Install Dependencies run: uv sync --no-dev --group tests --extra all - name: Install Starlette from source - if: matrix.starlette-src == 'true' + if: matrix.starlette-src == 'starlette-git' run: uv pip install --force-reinstall --no-deps --no-cache-dir --find-links https://test.pypi.org/simple/ starlette - run: mkdir coverage - name: Test