Skip to content

Test that the GeoPackage that is the output of the HK example notebook is correct #8

Test that the GeoPackage that is the output of the HK example notebook is correct

Test that the GeoPackage that is the output of the HK example notebook is correct #8

Workflow file for this run

name: Run Python tests
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.9']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install bedrock-ge with testing dependencies
run: uv sync --locked --group tests
- name: Run tests
run: uv run pytest tests