Skip to content

feat(ingest): add ontology DB ingest script #17

feat(ingest): add ontology DB ingest script

feat(ingest): add ontology DB ingest script #17

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install deps (dev only)
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Ruff
run: ruff check src scripts
- name: Black
run: black --check src scripts
- name: Pytest (non-blocking)
run: pytest -q || true