From f57472953a7a95f01a66d439a44f70a85b6baaa9 Mon Sep 17 00:00:00 2001 From: Julien Jerphanion Date: Mon, 25 Nov 2024 13:14:05 +0100 Subject: [PATCH] ci: Make Conda Nightly tests use `main` over `1.x` Signed-off-by: Julien Jerphanion --- .github/workflows/conda_canary.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/conda_canary.yml b/.github/workflows/conda_canary.yml index 3eade7a640..09f3c943e8 100644 --- a/.github/workflows/conda_canary.yml +++ b/.github/workflows/conda_canary.yml @@ -29,12 +29,12 @@ jobs: steps: - uses: actions/checkout@v4 with: - ref: '1.x' # Conda latest is on 1.x version + ref: 'main' - name: create mamba build environment uses: mamba-org/setup-micromamba@v1 with: environment-name: build_env - environment-file: ./mamba/environment-dev.yml + environment-file: ./dev/environment-dev.yml condarc: | channels: - conda-forge @@ -42,7 +42,7 @@ jobs: channel-priority: flexible create-args: >- python=3.10 - conda=*+* + conda=* # Build Mamba - uses: hendrikmuhs/ccache-action@main