Skip to content

Support schema 300

Support schema 300 #49

Workflow file for this run

name: Linux
# Run on PR requests. And on master itself.
on:
push:
branches:
- master
pull_request:
jobs:
TestLinux:
name: Linux, Python ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
# 2021
- python: 3.9
pins: ""
# 2022
- python: "3.10"
pins: "sqlalchemy==1.4.*"
# 2023
- python: "3.11"
pins: ""
# 2024
- python: "3.12"
pins: ""
# 2025
- python: "3.13"
pins: ""
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install GDAL, sqlite3 and spatialite
run: |
sudo apt install --yes --no-install-recommends sqlite3 libsqlite3-mod-spatialite libgdal-dev
- name: Install python dependencies
run: |
pip install --disable-pip-version-check --upgrade pip setuptools
pip install -e .[test] ${{ matrix.pins }}
pip install GDAL==$(gdal-config --version)
pip list
- name: Run tests
run: pytest --cov hydxlib