From 2706d7662421bffc7132a4d087ae8a832354b87b Mon Sep 17 00:00:00 2001 From: Constantin Pape Date: Sat, 15 Jun 2024 18:27:21 +0200 Subject: [PATCH] Use micromamba in CI --- .github/workflows/build.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c5b268e..873bc54 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,18 +27,11 @@ jobs: - name: Set windows env if: matrix.os == 'windows-latest' uses: ilammy/msvc-dev-cmd@v1 - - - name: Setup miniconda - uses: conda-incubator/setup-miniconda@v3 + + - name: Setup micromamba + uses: mamba-org/setup-micromamba@v1 with: - activate-environment: z5-build-env - auto-update-conda: true - channels: conda-forge environment-file: .github/workflows/environment.yaml - python-version: ${{ matrix.python-version }} - auto-activate-base: false - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: true - name: Build unix if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'