From 2fe3c867346287e5086f6b4ff9942574aa069b25 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Wed, 16 Oct 2024 16:02:05 +0100 Subject: [PATCH] run a test for Ben --- .github/workflows/create-condalock-file.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-condalock-file.yml b/.github/workflows/create-condalock-file.yml index 87cfb5d86f..b1917480ce 100644 --- a/.github/workflows/create-condalock-file.yml +++ b/.github/workflows/create-condalock-file.yml @@ -4,9 +4,10 @@ on: # Trigger on push on main or other branch for testing # NOTE that push: main will create the file very often # and hence lots of automated PRs - # push: - # branches: - # - main + push: + branches: + # - main + - test_BenMares schedule: - cron: '0 4 */10 * *' @@ -49,8 +50,9 @@ jobs: run: mamba install -y -c conda-forge conda-lock - name: Check version of conda-lock run: conda-lock --version + - run: conda list - name: Create conda lock file for linux-64 - run: conda-lock lock --platform linux-64 -f environment.yml --mamba --kind explicit + run: conda-lock lock --platform linux-64 -f environment.yml --mamba --kind explicit --log-level=DEBUG - name: Show conda version again run: conda --version - name: Show Python exec and version again