Skip to content

Merge pull request #77 from chrowe/patch-2 #74

Merge pull request #77 from chrowe/patch-2

Merge pull request #77 from chrowe/patch-2 #74

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip3 install poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest tests/ -v
- name: CLI smoke test
run: poetry run overturemaps download --bbox=-71.068,42.353,-71.058,42.363 -f geojson --type=building -o boston.geojson