Skip to content

Commit 8d28c18

Browse files
committed
Lockfile must be named conda-lock.yml
Otherwise it's not recognized by micromamba
1 parent 0249493 commit 8d28c18

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,13 @@ jobs:
3535

3636
steps:
3737
- uses: actions/checkout@v3
38+
- name: Rename lockfile
39+
run: |
40+
mv conda/conda-lock-${{ matrix.python-version }}.yaml conda/conda-lock.yml
3841
- uses: mamba-org/setup-micromamba@v1
3942
with:
4043
micromamba-version: 1.5.5-0
41-
environment-file: conda/conda-lock-${{ matrix.python-version }}.yaml
44+
environment-file: conda/conda-lock.yml
4245
environment-name: causalpy-test-${{ matrix.python-version }}
4346
cache-environment: true
4447
- name: Run doctests

0 commit comments

Comments
 (0)