Skip to content

Commit

Permalink
Add test case for Conda CI
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/ci.yml
  • Loading branch information
zanieb committed May 22, 2024
1 parent c83ba47 commit ee89501
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 @@ -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"
Expand Down

0 comments on commit ee89501

Please sign in to comment.