feat(dev): add local dockerized ci workflow (#342)

This commit is contained in:
Will Sarg 2026-02-16 09:10:39 -05:00 committed by GitHub
parent f2c73bacf8
commit b61d33aa1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 259 additions and 17 deletions

View file

@ -2,7 +2,6 @@ use super::traits::{Tool, ToolResult};
use crate::security::{AutonomyLevel, SecurityPolicy};
use async_trait::async_trait;
use serde_json::json;
use std::path::Path;
use std::sync::Arc;
/// Git operations tool for structured repository management.
@ -556,6 +555,7 @@ impl Tool for GitOperationsTool {
mod tests {
use super::*;
use crate::security::SecurityPolicy;
use std::path::Path;
use tempfile::TempDir;
fn test_tool(dir: &Path) -> GitOperationsTool {