Skip to content
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
12 changes: 6 additions & 6 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
- uses: mamba-org/setup-micromamba@v1
with:
activate-environment: csep-dev
python-version: '3.10'
channels: conda-forge
generate-run-shell: true
environment-file: requirements.yml
create-args: >-
python=3.10

Comment on lines +19 to 25
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good Pablo, this change from conda to mamba speeds-up processing quite a bit. I compared this script against the other CI scripts and it looks good. This should run much faster with micromamba.

- name: Install dependencies
- name: Check dependencies
run: |
conda env update --file requirements.yml
conda info -a
conda list

Expand Down