Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
11 changes: 10 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v5
with:
fetch-depth: 0 # Fetch full history
tags: true # Ensure tags are fetched
fetch-tags: true # Ensure tags are fetched

- name: Verify Git tags and current commit
run: |
Expand Down Expand Up @@ -77,6 +77,15 @@ jobs:
python-version: ["3.10", "3.11", "3.12", "3.13"]
runs-on: [ubuntu-latest, macos-14]
steps:

- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Install GDAL (macOS)
if: runner.os == 'macOS'
run: brew install gdal

- name: Check pypi packages
run: |
sleep 3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', 3.11, 3.12, 3.13]
python-version: ['3.10', '3.11', '3.12', '3.13']

services:

Expand Down
Loading