We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 214326c commit 3640723Copy full SHA for 3640723
.github/workflows/ci.yml
@@ -42,6 +42,22 @@ jobs:
42
python-version: ${{ matrix.python-version }}
43
allow-prereleases: true
44
45
+ - name: Setup Miniconda
46
+ uses: conda-incubator/setup-miniconda@v3.0.4
47
+ with:
48
+ auto-update-conda: true
49
+ python-version: ${{ matrix.python-version }}
50
+ channels: conda-forge
51
+ channel-priority: strict
52
+ auto-activate-base: false
53
+ miniforge-version: latest
54
+ use-mamba: true
55
+
56
+ - name: Install GDAL
57
+ run: |
58
+ mamba install conda-forge::gdal
59
+ python -m pip install .[test]
60
61
- name: Install package
62
run: python -m pip install .[test]
63
0 commit comments