Files
codex/.pre-commit-config.yaml
Rai (Michael Pokorny) 1fb774909d wip
2025-06-24 20:32:13 -07:00

16 lines
570 B
YAML

repos:
- repo: local
hooks:
- id: check-task-frontmatter
name: Check agentydragon task frontmatter
entry: python3 agentydragon/tools/check_task_frontmatter.py
language: python
additional_dependencies: [PyYAML, toml, pydantic]
files: ^agentydragon/tasks/[0-9]{2}-.*\.md$
- id: cargo-build
name: Check Rust workspace builds
entry: bash -lc 'cd codex-rs && RUSTFLAGS="-D warnings" cargo build --workspace --locked'
language: system
pass_filenames: false
require_serial: true