Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
- name: Install uv
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"

- name: Install GDAL
run: |
sudo apt-get update -qy
sudo apt-get install -qy -o APT::Install-Suggests=false libgdal-dev gdal-bin
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
sudo apt-get install -qy -o APT::Install-Suggests=false libgdal-dev gdal-bin
sudo apt-get install -qy -o APT::Install-Suggests=false gdal-bin

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Applied in commit 32bb3d6. Removed libgdal-dev and kept only gdal-bin.


- name: Install pre-commit hooks
run: uv run pre-commit install