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 8549f44 commit 4aa18db
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: integration_test_cli
on:
push:
branches:
- main # Replace with your branch name
- main

jobs:
build:
Expand All @@ -13,16 +13,18 @@ jobs:
- name: Checkout repo content
uses: actions/checkout@v2

- name: Install Mamba
- name: Update Conda and Mamba
run: |
conda update -n base -c defaults conda
conda install -c conda-forge mamba
- name: Create Conda Environment
run: |
mamba create -n marine_environment python=3.10 -y
conda activate marine_environment
mamba env update -f marine_environment.yml -n marine_environment
mamba env update -n marine_environment -f marine_environment.yml
- name: Execute Integration Tests
run: |
conda activate marine_environment
bash tests/integration_tests_run.sh

0 comments on commit 4aa18db

Please sign in to comment.