Skip to content

fix(pipeline): atomic replace + cleanup work_dir on every item #6

fix(pipeline): atomic replace + cleanup work_dir on every item

fix(pipeline): atomic replace + cleanup work_dir on every item #6

Workflow file for this run

name: test
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@v3
with:
version: "latest"
- name: Set up Python
run: uv python install 3.11
- name: Install deps
run: uv sync --all-extras
- name: Lint
run: uv run ruff check src tests
- name: Test
run: uv run pytest --cov=sift --cov-report=term