Skip to content

docs: describe deviations and extensions to the OData spec (#56) #172

docs: describe deviations and extensions to the OData spec (#56)

docs: describe deviations and extensions to the OData spec (#56) #172

Workflow file for this run

name: Run tests & linting
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Install GIS libraries
run: sudo apt-get install -y binutils libproj-dev gdal-bin libsqlite3-mod-spatialite
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Run tests
run: tox