Update main.yml #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: integration_test_cli | |
on: | |
push: | |
branches: | |
- main # Replace with your branch name | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo content | |
uses: actions/checkout@v2 | |
- name: Setup Mamba | |
run: | | |
sudo apt-get update | |
sudo apt-get install mamba -y | |
- name: Install dependencies | |
run: | | |
mamba env create -f marine_environment.yml -n marine_environment | |
conda activate marine_environment | |
- name: Execute integration tests | |
run: | | |
bash tests/integration_tests_run.sh |