diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 0a74138..5b5d99a 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -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: | @@ -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 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e3df572..d661011 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: