Skip to content

update urls

update urls #79

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Parse Python version
run: sed s/python-// runtime.txt | head > .python-version
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version'
- name: Install dependencies
run: |
sudo apt install -y libgeos-dev
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: isort
run: |
isort . --check
- name: black
run: |
black . --check
- name: Test with pytest
run: |
pip install pytest
python -m pytest tests