Skip to content

Commit

Permalink
ci: Make Conda Nightly tests use main over 1.x
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Jerphanion <[email protected]>
  • Loading branch information
jjerphan committed Nov 25, 2024
1 parent c809abc commit 5e6387c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/conda_canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ 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
uses: mamba-org/setup-micromamba@v2
with:
environment-name: build_env
environment-file: ./mamba/environment-dev.yml
environment-file: ./dev/environment-dev.yml
condarc: |
channels:
- conda-forge
- conda-canary/label/dev
channel-priority: flexible
create-args: >-
python=3.10
conda=*+*
conda=*
# Build Mamba
- uses: hendrikmuhs/ccache-action@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install pre-commit
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
environment-name: linters
create-args: pre-commit
Expand Down

0 comments on commit 5e6387c

Please sign in to comment.