Skip to content

feat(chunk): export provenance-preserving records #8

feat(chunk): export provenance-preserving records

feat(chunk): export provenance-preserving records #8

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test and lint
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install package with dev dependencies
run: python -m pip install -e ".[dev]"
- name: Run tests
run: python -m pytest -p no:cacheprovider tests
- name: Run Ruff
run: python -m ruff check src tests