Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch all mamba actions to miniforge/conda #170

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/build_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
CANCEL_OTHERS: true
PATHS_IGNORE: '["**/README.rst", "**/docs/**"]'
PATHS_IGNORE: '["**/README.md", "**/docs/**"]'

jobs:
pre-commit-hooks:
Expand Down Expand Up @@ -87,10 +87,7 @@ jobs:
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: "mache_ci"
miniforge-variant: Mambaforge
miniforge-version: latest
use-mamba: true
mamba-version: "*"
channels: conda-forge,defaults
channel-priority: strict
auto-update-conda: true
Expand All @@ -99,7 +96,7 @@ jobs:
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
name: Install mache
run: |
mamba create -n mache_dev --file spec-file.txt \
conda create -n mache_dev --file spec-file.txt \
python=${{ matrix.python-version }}
conda activate mache_dev
python -m pip install -e .
Expand Down
Loading