Skip to content

Commit 8fca2fa

Browse files
committed
Fix GDAL installation issue in GitHub Actions
1 parent c276342 commit 8fca2fa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ jobs:
2121
with:
2222
python-version: '3.13.2' # Specify your Python version
2323

24-
- name: Install dependencies
24+
- name: Install system dependencies
25+
run: |
26+
sudo apt-get update
27+
sudo apt-get install -y libgdal-dev
28+
29+
- name: Install Python dependencies
2530
run: |
2631
python -m pip install --upgrade pip
2732
pip install .

0 commit comments

Comments
 (0)