Skip to content

Allow for geographies to exist between meta and seed geographies #10

Allow for geographies to exist between meta and seed geographies

Allow for geographies to exist between meta and seed geographies #10

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on:
push:
branches: [ "master", "develop"]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
version: "0.6.14"
- name: Install the project
run: uv sync --all-extras --dev
- name: Lint with ruff
uses: astral-sh/ruff-action@v3
- name: Run tests
run: uv run pytest