Skip to content

Merge pull request #307 from jamesvandyne/bridgy #568

Merge pull request #307 from jamesvandyne/bridgy

Merge pull request #307 from jamesvandyne/bridgy #568

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install Spatalite
run: |
sudo apt-get update && sudo apt-get install -y spatialite-bin libsqlite3-mod-spatialite binutils libproj-dev gdal-bin
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Running tox
run: |
tox