Skip to content

Handle empty sequences in convert_ras_hdf_value #212

Handle empty sequences in convert_ras_hdf_value

Handle empty sequences in convert_ras_hdf_value #212

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install GDAL dependencies
run: |
sudo apt-get update
sudo apt-get install -y gdal-bin libgdal-dev
export CPLUS_INCLUDE_PATH=/usr/include/gdal
export C_INCLUDE_PATH=/usr/include/gdal
- name: Set GDAL_VERSION
run: echo "GDAL_VERSION=3.6.0" >> $GITHUB_ENV
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Lint (ruff)
run: |
ruff check
ruff format --check
- name: Run tests with coverage
run: |
pytest --cov=src --cov-report term-missing
- name: Run coverage
run: |
coverage xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1