Skip to content

geotiff: preserve transform on 1xN / Nx1 georeferenced writes (#1945)… #1975

geotiff: preserve transform on 1xN / Nx1 georeferenced writes (#1945)…

geotiff: preserve transform on 1xN / Nx1 georeferenced writes (#1945)… #1975

Workflow file for this run

name: pytest
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python: ${{ github.event_name == 'pull_request' && fromJson('["3.14"]') || fromJson('["3.12", "3.13", "3.14"]') }}
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tests]
- name: Run pytest
run: pytest