Skip to content

docs: cite MITRA paper (Nehrdich & Keutzer 2026) + link upstream repo #21

docs: cite MITRA paper (Nehrdich & Keutzer 2026) + link upstream repo

docs: cite MITRA paper (Nehrdich & Keutzer 2026) + link upstream repo #21

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- run: cargo fmt --all --check
- run: cargo clippy --all-targets -- -D warnings
- run: cargo test --all
python-parity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install pytest
- run: cd data-pipeline && python -m pytest tests/ -q