Skip to content

test: pass extreme performance benchmarks and update CI #2

test: pass extreme performance benchmarks and update CI

test: pass extreme performance benchmarks and update CI #2

Workflow file for this run

name: Dacos CI pipeline

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 9, Col: 1): Unexpected value 'job', (Line: 1, Col: 1): Required property is missing: jobs
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
job:
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"