We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40b9255 commit afe6bcfCopy full SHA for afe6bcf
.github/workflows/core.yml
@@ -319,7 +319,12 @@ jobs:
319
matrix.arch == 'default'
320
run: |
321
. venv/bin/activate
322
- git clone --depth 1 https://github.com/firedrakeproject/gusto.git gusto-repo
+ if [ ${{ inputs.target_branch }} = 'release' ]; then
323
+ GUSTO_BRANCH='main'
324
+ else
325
+ GUSTO_BRANCH='future'
326
+ fi
327
+ git clone --depth 1 https://github.com/firedrakeproject/gusto.git gusto-repo --branch $GUSTO_BRANCH
328
pip install --verbose ./gusto-repo
329
python -m pytest -n 8 --verbose \
330
gusto-repo/integration-tests/balance/test_saturated_balance.py \
0 commit comments