We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09045ae commit bc40953Copy full SHA for bc40953
.github/workflows/python-package-conda-cache.yml
@@ -36,13 +36,11 @@ jobs:
36
steps:
37
- uses: actions/checkout@v2
38
39
- - name: Setup Mambaforge
+ - name: Setup Miniforge
40
uses: conda-incubator/setup-miniconda@v2
41
with:
42
- miniforge-variant: Mambaforge
43
miniforge-version: latest
44
activate-environment: my-env
45
- use-mamba: true
46
47
- name: Set cache date
48
run: echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
@@ -54,7 +52,7 @@ jobs:
54
52
id: cache
55
53
56
- name: Update environment
57
- run: mamba env update -n my-env -f environment.yml
+ run: conda env update -n my-env -f environment.yml
58
if: steps.cache.outputs.cache-hit != 'true'
59
60
- name: Run tests
0 commit comments