Skip to content

MAINT: Switch from gdal to rasterio #34

MAINT: Switch from gdal to rasterio

MAINT: Switch from gdal to rasterio #34

Workflow file for this run

# This workflow will check code (tapenade compare and ruff check)
name: Code Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
- maintenance/**
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
ubuntu:
name: (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-20.04", "ubuntu-22.04"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install build-essential openjdk-11-jre-headless
python -m venv test
. test/bin/activate
python -m pip install --upgrade pip
pip install ruff
- name: Tapenade Compare
run: |
make tap-cmp
- name: Ruff Check
run: |
. test/bin/activate
make check