Back to development: 0.228.4 #452
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# 2021 | |
- python: 3.9 | |
os: ubuntu-22.04 | |
pins: "sqlalchemy==1.4.44 alembic==1.8.* geoalchemy2==0.14.0" | |
# 2022 | |
- python: "3.10" | |
os: ubuntu-22.04 | |
pins: "sqlalchemy==1.4.44 alembic==1.8.* geoalchemy2==0.14.0" | |
# 2023 | |
- python: "3.11" | |
os: ubuntu-22.04 | |
pins: "sqlalchemy==2.0.24 alembic==1.13.1 geoalchemy2==0.14.3" | |
pytestargs: "-Werror" | |
# 2024 | |
- python: "3.12" | |
os: ubuntu-latest | |
pins: "sqlalchemy==2.0.* alembic==1.13.* geoalchemy2==0.14.*" | |
pytestargs: "-Werror" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install sqlite3 and spatialite | |
run: | | |
sudo apt update | |
sudo apt install --yes --no-install-recommends sqlite3 libsqlite3-mod-spatialite | |
sqlite3 --version | |
- name: Install gdal (for ogr2ogr) | |
run: | | |
sudo apt update | |
sudo apt install --yes --no-install-recommends gdal-bin | |
ogr2ogr --version | |
- name: Install python dependencies | |
shell: bash | |
run: | | |
pip install --disable-pip-version-check --upgrade pip setuptools wheel | |
pip install ${{ matrix.pins }} .[test,cli] | |
pip list | |
- name: Run tests | |
shell: bash | |
run: | | |
pytest ${{ matrix.pytestargs }} |