Skip to content

Create NDCoord Index + Big Doc improvemntes #38

Create NDCoord Index + Big Doc improvemntes

Create NDCoord Index + Big Doc improvemntes #38

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6.0.1
- name: Set up Python
run: uv python install
- name: Install dependencies
run: uv sync --dev
- name: Run tests with coverage
run: uv run pytest -v --cov --cov-branch --cov-report=xml
- name: Run doctests
run: uv run python -m doctest src/linked_indices/example_data.py -v
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}