diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e68758a6e815..5b4e7e6a7e7ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -470,6 +470,33 @@ jobs: run: | ./uv pip install anyio + integration-test-conda: + needs: build-binary-linux + name: "integration test | conda" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: conda-incubator/setup-miniconda@v3 + with: + miniconda-version: "latest" + activate-environment: uv + + - name: "Download binary" + uses: actions/download-artifact@v4 + with: + name: uv-linux-${{ github.sha }} + + - name: "Prepare binary" + run: chmod +x ./uv + + - name: "Display environment" + run: | + echo "$CONDA_PREFIX" + + - name: "Install a package" + run: | + ./uv pip install anyio + cache-test-ubuntu: needs: build-binary-linux name: "check cache | ubuntu"