Open Issues Need Help
View All on GitHubAI Summary: This chore issue requests adding a configuration to allow developers to easily launch the GDB debugger when running tests via `make test` or `cargo test`. The goal is to provide a more convenient debugging experience for tests, similar to the existing `make debug; make gdb;` workflow.
AI Summary: This chore issue requests the installation of SSH tools within the development container. The current container lacks SSH, which is necessary for Git operations.
AI Summary: This issue proposes integrating code quality and formatting checks into the CI/CD pipeline for a Rust project. It requires setting up GitHub Actions to run `cargo fmt --check`, `cargo clippy` (with warnings as errors), and `cargo check`. The goal is to enforce code standards, catch potential bugs early, and optimize CI speed using caching, making these checks a required status check for merging into the main branch.