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 a88a3ff commit 8549f44
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 8549f44

Please sign in to comment.