From 306e55d61ab7cb651de50d9d5cee6a0d6513ca01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Misty=20De=20M=C3=A9o?= Date: Fri, 18 Jul 2025 15:10:28 -0700 Subject: [PATCH] ci: fix daily run I migrated our regular tests to use `uv`, but neglected to update this config too. --- .github/workflows/daily.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/daily.yaml b/.github/workflows/daily.yaml index a5b2258..0aa516c 100644 --- a/.github/workflows/daily.yaml +++ b/.github/workflows/daily.yaml @@ -12,12 +12,13 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - name: Install uv + uses: astral-sh/setup-uv@v6 + + - uses: ./.github/workflows/setup with: python-version: '3.12' - - uses: ./.github/workflows/setup - - name: Run tests run: | - py.test --tb=native --verbose tests + uv run py.test --tb=native --verbose tests