Skip to content

stac-fetch: query STAC catalogs, download COGs, build xarray datacubes #2

stac-fetch: query STAC catalogs, download COGs, build xarray datacubes

stac-fetch: query STAC catalogs, download COGs, build xarray datacubes #2

Workflow file for this run

name: CI
on:
push:
branches: [main, build]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
- run: python -m pip install --upgrade pip
- run: pip install -r requirements-dev.txt
- run: ruff check .
- run: ruff format --check .
- run: python -m pytest