Skip to content

style: format ingestion.py to pass CI #5

style: format ingestion.py to pass CI

style: format ingestion.py to pass CI #5

Workflow file for this run

name: Dacos CI pipeline
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test-and-lint:
name: Code Quality and Physics Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
- name: Set up Python 3.12
run: uv python install 3.12
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Check Code Formatting (Ruff)
run: uv run ruff format --check .
- name: Check Code Quality/Linting (Ruff)
run: uv run ruff check .
- name: Static Type Checking (Mypy)
run: uv run mypy src/dacos
- name: The Matrix of Truth (Pytest)
run: uv run pytest -v -m "not performance"