Skip to content

Commit

Permalink
Add test case for Conda CI
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed May 22, 2024
1 parent eb63dd8 commit 782958d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 782958d

Please sign in to comment.