From a88a3ff39ea5c4841b6a8f230d4b5b2d490ba366 Mon Sep 17 00:00:00 2001 From: Eric Kofman Date: Sun, 7 Jul 2024 19:52:48 -0700 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4a18824..f7a1392 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,10 +13,15 @@ jobs: - name: Checkout repo content uses: actions/checkout@v2 - - name: Setup Mamba + - name: Setup Miniconda + uses: conda-incubator/setup-miniconda@v2 + with: + environment-file: marine_environment.yml # If needed + activate-environment: marine_environment + + - name: Install Mamba run: | - sudo apt-get update - sudo apt-get install mamba -y + conda install -c conda-forge mamba - name: Install dependencies run: |