Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ekofman authored Jul 8, 2024
1 parent 4aa18db commit 554ca3d
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,20 @@ jobs:
- name: Checkout repo content
uses: actions/checkout@v2

- name: Update Conda and Mamba
- name: Install Mamba
run: |
conda update -n base -c defaults conda
conda install -c conda-forge mamba
conda install -c conda-forge mamba -y
- name: Find Mamba executable path
run: |
MAMBA_PATH=$(which mamba)
echo "Mamba is installed at: $MAMBA_PATH"
- name: Create Conda Environment
run: |
mamba create -n marine_environment python=3.10 -y
$MAMBA_PATH create -n marine_environment python=3.10 -y
conda activate marine_environment
mamba env update -n marine_environment -f marine_environment.yml
$MAMBA_PATH env update -n marine_environment -f marine_environment.yml
- name: Execute Integration Tests
run: |
Expand Down

0 comments on commit 554ca3d

Please sign in to comment.