Skip to content

Fix migrate refill-enrichment silently skipping source_name/source_type #117

Fix migrate refill-enrichment silently skipping source_name/source_type

Fix migrate refill-enrichment silently skipping source_name/source_type #117

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies
run: uv pip install --system -e ".[dev]"
- name: Lint
run: ruff check .
- name: Test
run: pytest