Skip to content

Update main.yml

Update main.yml #6

Workflow file for this run

name: integration_test_cli
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v2
- 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 -n marine_environment -f marine_environment.yml
- name: Execute Integration Tests
run: |
conda activate marine_environment
bash tests/integration_tests_run.sh