Skip to content

Commit 991ece2

Browse files
committed
Add missing flag, update branch used for dev jobs, and add missing step for install from release
1 parent b5b597d commit 991ece2

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test-suite.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,18 @@ jobs:
5050
# if: matrix.os != 'windows-latest'
5151
# run: |
5252
# conda install c-compiler cxx-compiler
53+
- name: Install Yggdrasil from conda-forge
54+
if: matrix.yggdrasil-version == 'latest'
55+
run: |
56+
conda install yggdrasil
5357
- name: Install development version of Yggdrasil
5458
if: matrix.yggdrasil-version == 'dev'
5559
run: |
5660
git clone https://github.com/cropsinsilico/yggdrasil.git
5761
cd yggdrasil
62+
git checkout topic/cache
5863
python utils/setup_test_env.py conda-dev --build-method direct
59-
- name: Install specific version of Yggdrasil via conda
64+
- name: Install specific version of Yggdrasil from conda-forge
6065
if: matrix.yggdrasil-version != 'latest' && matrix.yggdrasil-version != 'dev'
6166
run: |
6267
conda install yggdrasil==${{ matrix.yggdrasil-version }} -y
@@ -78,4 +83,4 @@ jobs:
7883
ygginfo --verbose
7984
- name: Validate models
8085
run: |
81-
python -m yggdrasil validate models
86+
python -m yggdrasil validate models --model-submission

0 commit comments

Comments
 (0)