Skip to content

Commit 2bd97ec

Browse files
github actions: mamba fixes
1 parent 95e7bf4 commit 2bd97ec

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/conda-install.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ jobs:
4949
run: |
5050
coverage run -m pytest
5151
coverage xml
52-
pwd
53-
ls -lha
5452
env:
5553
PGUSER: postgres
5654
PGPASSWORD: Password12!
@@ -67,12 +65,13 @@ jobs:
6765
shell: cmd /C CALL {0}
6866
steps:
6967
- uses: actions/checkout@v3
70-
- uses: mamba-org/setup-micromamba@v2
68+
- uses: conda-incubator/setup-miniconda@v3
7169
with:
70+
activate-environment: ps_test_dev
71+
auto-update-conda: true
72+
python-version: '3.12'
7273
environment-file: environment.yml
73-
cache-environment: true
74-
init-shell: cmd.exe
75-
post-cleanup: 'all'
74+
auto-activate-base: false
7675
- uses: nyurik/action-setup-postgis@v2
7776
with:
7877
cached-dir: C:\downloads
@@ -87,7 +86,7 @@ jobs:
8786
echo PROJ_DATA=%CONDA%\share\proj>> %GITHUB_ENV%
8887
- name: Install python packages
8988
run: |
90-
mamba env update --file environment-dev.yml -n base
89+
conda env update --file environment-dev.yml --name ps_test_dev
9190
- name: Install pyroSAR
9291
run: |
9392
pip install .

0 commit comments

Comments
 (0)