Skip to content

Commit 3640723

Browse files
committed
Update CI to install GDAL
1 parent 214326c commit 3640723

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

+16
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,22 @@ jobs:
4242
python-version: ${{ matrix.python-version }}
4343
allow-prereleases: true
4444

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+
4561
- name: Install package
4662
run: python -m pip install .[test]
4763

0 commit comments

Comments
 (0)