From ee89501bf237b952eddb26697759e62536de785e Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 22 May 2024 15:58:36 -0500 Subject: [PATCH] Add test case for Conda CI # Conflicts: # .github/workflows/ci.yml --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82e6b58c12e9..e525cc97aa19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -438,6 +438,33 @@ jobs: ./uv venv ./${{ matrix.command }} + 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"