Skip to content

chore: update dependencies; add pyproj explicitly #7

chore: update dependencies; add pyproj explicitly

chore: update dependencies; add pyproj explicitly #7

Workflow file for this run

name: CI
on:
push:
paths:
- "src/**"
- "tests/**"
- "pyproject.toml"
- "uv.lock"
- "Cargo.toml"
- "Cargo.lock"
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
pyproject-file: "pyproject.toml"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
# TODO(justin): test coverage
# TODO(justin): ruff linting
- name: Run tests
run: uv run pytest