From 8549f44d8214f0a8cf4c78564c9cc9698a5b1427 Mon Sep 17 00:00:00 2001 From: Eric Kofman Date: Sun, 7 Jul 2024 19:57:43 -0700 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f7a1392..541bcb0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,21 +13,16 @@ jobs: - name: Checkout repo content uses: actions/checkout@v2 - - 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: | conda install -c conda-forge mamba - - name: Install dependencies + - name: Create Conda Environment run: | - mamba env create -f marine_environment.yml -n marine_environment + mamba create -n marine_environment python=3.10 -y conda activate marine_environment + mamba env update -f marine_environment.yml -n marine_environment - - name: Execute integration tests + - name: Execute Integration Tests run: | bash tests/integration_tests_run.sh