From a89174d000885c65a7a777be2735600a2dd2d8a0 Mon Sep 17 00:00:00 2001 From: Trey Stafford Date: Wed, 25 Sep 2024 15:43:39 -0600 Subject: [PATCH] Attempt to set pre v2 version of micromamba --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d35e1a..ac45b74 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,13 +23,13 @@ jobs: - name: "Install Conda environment" uses: "mamba-org/setup-micromamba@v1" with: + micromamba-version: '1.5.10-0' # any version from https://github.com/mamba-org/micromamba-releases environment-file: "conda-lock.yml" - # environment-file: "environment.yml" # When using a lock-file, we have to set an environment name. environment-name: "pm_icecon-ci" - cache-environment: false + cache-environment: true # Increase this key to trigger cache invalidation - # cache-environment-key: 2 + cache-environment-key: 2 # Linter - name: "Run pre-commit tests"