Skip to content

feat: add initial agents module with graph structure and templates #4

feat: add initial agents module with graph structure and templates

feat: add initial agents module with graph structure and templates #4

Workflow file for this run

name: Ruff Lint & Format
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: "3.12"
enable-cache: true
cache-suffix: "ruff"
- name: Install dependencies (dev)
run: uv sync --dev
- name: Ruff Lint
run: uv run ruff check .
- name: Ruff Format (check only)
run: uv run ruff format . --check